1 /***************************************************************************
2 * Copyright (C) 2006 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
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. *
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. *
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 ***************************************************************************/
24 #include "time_support.h"
31 int timeval_subtract(struct timeval
*result
, struct timeval
*x
, struct timeval
*y
);
32 int timeval_add(struct timeval
*result
, struct timeval
*x
, struct timeval
*y
);
33 int timeval_add_time(struct timeval
*result
, int sec
, int usec
);
35 /* calculate difference between two struct timeval values */
36 int timeval_subtract(struct timeval
*result
, struct timeval
*x
, struct timeval
*y
)
38 if (x
->tv_usec
< y
->tv_usec
)
40 int nsec
= (y
->tv_usec
- x
->tv_usec
) / 1000000 + 1;
41 y
->tv_usec
-= 1000000 * nsec
;
44 if (x
->tv_usec
- y
->tv_usec
> 1000000) {
45 int nsec
= (x
->tv_usec
- y
->tv_usec
) / 1000000;
46 y
->tv_usec
+= 1000000 * nsec
;
50 result
->tv_sec
= x
->tv_sec
- y
->tv_sec
;
51 result
->tv_usec
= x
->tv_usec
- y
->tv_usec
;
53 /* Return 1 if result is negative. */
54 return x
->tv_sec
< y
->tv_sec
;
57 /* add two struct timeval values */
58 int timeval_add(struct timeval
*result
, struct timeval
*x
, struct timeval
*y
)
60 result
->tv_sec
= x
->tv_sec
+ y
->tv_sec
;
62 result
->tv_usec
= x
->tv_usec
+ y
->tv_usec
;
64 while (result
->tv_usec
> 1000000)
66 result
->tv_usec
-= 1000000;
73 int timeval_add_time(struct timeval
*result
, int sec
, int usec
)
75 result
->tv_sec
+= sec
;
76 result
->tv_usec
+= usec
;
78 while (result
->tv_usec
> 1000000)
80 result
->tv_usec
-= 1000000;
87 int duration_start_measure(duration_t
*duration
)
89 gettimeofday(&duration
->start
, NULL
);
94 int duration_stop_measure(duration_t
*duration
, char **text
)
98 gettimeofday(&end
, NULL
);
100 timeval_subtract(&duration
->duration
, &end
, &duration
->start
);
105 snprintf(*text
, 16, "%lis %lius", duration
->duration
.tv_sec
, duration
->duration
.tv_usec
);