]> git.sur5r.net Git - openocd/blob - src/helper/time_support.c
- added missing AT91RM9200 files
[openocd] / src / helper / time_support.c
1 /***************************************************************************
2  *   Copyright (C) 2006 by Dominic Rath                                    *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20 #ifdef HAVE_CONFIG_H
21 #include "config.h"
22 #endif
23
24 #include "time_support.h"
25
26 #include <sys/time.h>
27 #include <time.h>
28
29 int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y);
30 int timeval_add(struct timeval *result, struct timeval *x, struct timeval *y);
31 int timeval_add_time(struct timeval *result, int sec, int usec);
32
33 /* calculate difference between two struct timeval values */
34 int timeval_subtract(struct timeval *result, struct timeval *x, struct timeval *y)
35 {
36         if (x->tv_usec < y->tv_usec)
37         {
38                 int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
39                 y->tv_usec -= 1000000 * nsec;
40                 y->tv_sec += nsec;
41         }
42         if (x->tv_usec - y->tv_usec > 1000000) {
43                 int nsec = (x->tv_usec - y->tv_usec) / 1000000;
44                 y->tv_usec += 1000000 * nsec;
45                 y->tv_sec -= nsec;
46         }
47
48         result->tv_sec = x->tv_sec - y->tv_sec;
49         result->tv_usec = x->tv_usec - y->tv_usec;
50
51         /* Return 1 if result is negative. */
52         return x->tv_sec < y->tv_sec;
53 }
54
55 /* add two struct timeval values */
56 int timeval_add(struct timeval *result, struct timeval *x, struct timeval *y)
57 {
58         result->tv_sec = x->tv_sec + y->tv_sec;
59         
60         result->tv_usec = x->tv_usec + y->tv_usec;
61         
62         while (result->tv_usec > 1000000)
63         {
64                 result->tv_usec -= 1000000;
65                 result->tv_sec++;
66         }
67         
68         return 0;
69 }
70
71 int timeval_add_time(struct timeval *result, int sec, int usec)
72 {
73         result->tv_sec += sec;
74         result->tv_usec += usec;
75         
76         while (result->tv_usec > 1000000)
77         {
78                 result->tv_usec -= 1000000;
79                 result->tv_sec++;
80         }
81         
82         return 0;
83 }
84