-
Notifications
You must be signed in to change notification settings - Fork 0
/
pth_time.c
182 lines (161 loc) · 4.61 KB
/
pth_time.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
** GNU Pth - The GNU Portable Threads
** Copyright (c) 1999-2006 Ralf S. Engelschall <[email protected]>
**
** This file is part of GNU Pth, a non-preemptive thread scheduling
** library which can be found at http://www.gnu.org/software/pth/.
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
** USA, or contact Ralf S. Engelschall <[email protected]>.
**
** pth_time.c: Pth time calculations
*/
/* ``Real programmers confuse
Christmas and Halloween
because DEC 25 = OCT 31.''
-- Unknown */
#include "pth_p.h"
#if cpp
#define PTH_TIME_NOW (pth_time_t *)(0)
#define PTH_TIME_ZERO &pth_time_zero
#define PTH_TIME(sec,usec) { sec, usec }
#define pth_time_equal(t1,t2) \
(((t1).tv_sec == (t2).tv_sec) && ((t1).tv_usec == (t2).tv_usec))
#endif /* cpp */
/* a global variable holding a zero time */
intern pth_time_t pth_time_zero = { 0L, 0L };
/* sleep for a specified amount of microseconds */
intern void pth_time_usleep(unsigned long usec)
{
#ifdef HAVE_USLEEP
usleep((unsigned int )usec);
#else
struct timeval timeout;
timeout.tv_sec = usec / 1000000;
timeout.tv_usec = usec - (1000000 * timeout.tv_sec);
while (pth_sc(select)(1, NULL, NULL, NULL, &timeout) < 0 && errno == EINTR) ;
#endif
return;
}
/* calculate: t1 = t2 */
#if cpp
#if defined(HAVE_GETTIMEOFDAY_ARGS1)
#define __gettimeofday(t) gettimeofday(t)
#else
#define __gettimeofday(t) gettimeofday(t, NULL)
#endif
#define pth_time_set(t1,t2) \
do { \
if ((t2) == PTH_TIME_NOW) \
__gettimeofday((t1)); \
else { \
(t1)->tv_sec = (t2)->tv_sec; \
(t1)->tv_usec = (t2)->tv_usec; \
} \
} while (0)
#endif /* cpp */
/* time value constructor */
pth_time_t pth_time(long sec, long usec)
{
pth_time_t tv;
tv.tv_sec = sec;
tv.tv_usec = usec;
return tv;
}
/* timeout value constructor */
pth_time_t pth_timeout(long sec, long usec)
{
pth_time_t tv;
pth_time_t tvd;
pth_time_set(&tv, PTH_TIME_NOW);
tvd.tv_sec = sec;
tvd.tv_usec = usec;
pth_time_add(&tv, &tvd);
return tv;
}
/* calculate: t1 <=> t2 */
intern int pth_time_cmp(pth_time_t *t1, pth_time_t *t2)
{
int rc;
rc = t1->tv_sec - t2->tv_sec;
if (rc == 0)
rc = t1->tv_usec - t2->tv_usec;
return rc;
}
/* calculate: t1 = t1 + t2 */
#if cpp
#define pth_time_add(t1,t2) \
(t1)->tv_sec += (t2)->tv_sec; \
(t1)->tv_usec += (t2)->tv_usec; \
if ((t1)->tv_usec > 1000000) { \
(t1)->tv_sec += 1; \
(t1)->tv_usec -= 1000000; \
}
#endif
/* calculate: t1 = t1 - t2 */
#if cpp
#define pth_time_sub(t1,t2) \
(t1)->tv_sec -= (t2)->tv_sec; \
(t1)->tv_usec -= (t2)->tv_usec; \
if ((t1)->tv_usec < 0) { \
(t1)->tv_sec -= 1; \
(t1)->tv_usec += 1000000; \
}
#endif
/* calculate: t1 = t1 / n */
intern void pth_time_div(pth_time_t *t1, int n)
{
long q, r;
q = (t1->tv_sec / n);
r = (((t1->tv_sec % n) * 1000000) / n) + (t1->tv_usec / n);
if (r > 1000000) {
q += 1;
r -= 1000000;
}
t1->tv_sec = q;
t1->tv_usec = r;
return;
}
/* calculate: t1 = t1 * n */
intern void pth_time_mul(pth_time_t *t1, int n)
{
t1->tv_sec *= n;
t1->tv_usec *= n;
t1->tv_sec += (t1->tv_usec / 1000000);
t1->tv_usec = (t1->tv_usec % 1000000);
return;
}
/* convert a time structure into a double value */
intern double pth_time_t2d(pth_time_t *t)
{
double d;
d = ((double)t->tv_sec*1000000 + (double)t->tv_usec) / 1000000;
return d;
}
/* convert a time structure into a integer value */
intern int pth_time_t2i(pth_time_t *t)
{
int i;
i = (t->tv_sec*1000000 + t->tv_usec) / 1000000;
return i;
}
/* check whether time is positive */
intern int pth_time_pos(pth_time_t *t)
{
if (t->tv_sec > 0 && t->tv_usec > 0)
return 1;
else
return 0;
}