-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimers.c
351 lines (292 loc) · 7.57 KB
/
timers.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/******************************************************************************
Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved.
Portions of this code were written by Stephen White, aka ghond.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export
control laws. This software is made available AS IS, and Xerox Corporation
makes no warranty about the software, its performance or its conformity to
any specification. Any person obtaining a copy of this software is requested
to send their name and post office or electronic mail address to:
Pavel Curtis
Xerox PARC
3333 Coyote Hill Rd.
Palo Alto, CA 94304
Pavel@Xerox.Com
*****************************************************************************/
#include "my-signal.h"
#include "my-stdlib.h"
#include "my-sys-time.h"
#include "my-time.h"
#include "my-unistd.h"
#include "config.h"
#include "timers.h"
#if (defined(MACH) && defined(CMU)) || !defined(SIGVTALRM)
/* Virtual interval timers are broken on Mach 3.0 */
# undef ITIMER_VIRTUAL
#endif
typedef struct Timer_Entry Timer_Entry;
struct Timer_Entry {
Timer_Entry *next;
time_t when;
Timer_Proc proc;
Timer_Data data;
Timer_ID id;
};
static Timer_Entry *active_timers = 0;
static Timer_Entry *free_timers = 0;
static Timer_Entry *virtual_timer = 0;
static Timer_ID next_id = 0;
static Timer_Entry *
allocate_timer(void)
{
if (free_timers) {
Timer_Entry *this = free_timers;
free_timers = this->next;
return this;
} else
return (Timer_Entry *) malloc(sizeof(Timer_Entry));
}
static void
free_timer(Timer_Entry * this)
{
this->next = free_timers;
free_timers = this;
}
static void restart_timers(void);
static void
wakeup_call(int signo)
{
Timer_Entry *this = active_timers;
Timer_Proc proc = this->proc;
Timer_ID id = this->id;
Timer_Data data = this->data;
active_timers = active_timers->next;
free_timer(this);
restart_timers();
if (proc)
(*proc) (id, data);
}
#ifdef ITIMER_VIRTUAL
static void
virtual_wakeup_call(int signo)
{
Timer_Entry *this = virtual_timer;
Timer_Proc proc = this->proc;
Timer_ID id = this->id;
Timer_Data data = this->data;
virtual_timer = 0;
free_timer(this);
if (proc)
(*proc) (id, data);
}
#endif
static void
stop_timers()
{
alarm(0);
signal(SIGALRM, SIG_IGN);
signal(SIGALRM, wakeup_call);
#ifdef ITIMER_VIRTUAL
{
struct itimerval itimer, oitimer;
itimer.it_value.tv_sec = 0;
itimer.it_value.tv_usec = 0;
itimer.it_interval.tv_sec = 0;
itimer.it_interval.tv_usec = 0;
setitimer(ITIMER_VIRTUAL, &itimer, &oitimer);
signal(SIGVTALRM, SIG_IGN);
signal(SIGVTALRM, virtual_wakeup_call);
if (virtual_timer)
virtual_timer->when = oitimer.it_value.tv_sec;
}
#endif
}
static void
restart_timers()
{
if (active_timers) {
time_t now = time(0);
signal(SIGALRM, wakeup_call);
if (now < active_timers->when) /* first timer is in the future */
alarm(active_timers->when - now);
else
kill(getpid(), SIGALRM); /* we're already late... */
}
#ifdef ITIMER_VIRTUAL
if (virtual_timer) {
signal(SIGVTALRM, virtual_wakeup_call);
if (virtual_timer->when > 0) {
struct itimerval itimer;
itimer.it_value.tv_sec = virtual_timer->when;
itimer.it_value.tv_usec = 0;
itimer.it_interval.tv_sec = 0;
itimer.it_interval.tv_usec = 0;
setitimer(ITIMER_VIRTUAL, &itimer, 0);
} else
kill(getpid(), SIGVTALRM);
}
#endif
}
Timer_ID
set_timer(unsigned seconds, Timer_Proc proc, Timer_Data data)
{
Timer_Entry *this = allocate_timer();
Timer_Entry **t;
this->id = next_id++;
this->when = time(0) + seconds;
this->proc = proc;
this->data = data;
stop_timers();
t = &active_timers;
while (*t && this->when >= (*t)->when)
t = &((*t)->next);
this->next = *t;
*t = this;
restart_timers();
return this->id;
}
Timer_ID
set_virtual_timer(unsigned seconds, Timer_Proc proc, Timer_Data data)
{
#ifdef ITIMER_VIRTUAL
if (virtual_timer)
return -1;
stop_timers();
virtual_timer = allocate_timer();
virtual_timer->id = next_id++;
virtual_timer->when = seconds;
virtual_timer->proc = proc;
virtual_timer->data = data;
restart_timers();
return virtual_timer->id;
#else /* !ITIMER_VIRTUAL */
return set_timer(seconds, proc, data);
#endif
}
int
virtual_timer_available()
{
#ifdef ITIMER_VIRTUAL
return 1;
#else
return 0;
#endif
}
unsigned
timer_wakeup_interval(Timer_ID id)
{
Timer_Entry *t;
#ifdef ITIMER_VIRTUAL
if (virtual_timer && virtual_timer->id == id) {
struct itimerval itimer;
getitimer(ITIMER_VIRTUAL, &itimer);
return itimer.it_value.tv_sec;
}
#endif
for (t = active_timers; t; t = t->next)
if (t->id == id)
return t->when - time(0);;
return 0;
}
void
timer_sleep(unsigned seconds)
{
set_timer(seconds, 0, 0);
pause();
}
int
cancel_timer(Timer_ID id)
{
Timer_Entry **t = &active_timers;
int found = 0;
stop_timers();
if (virtual_timer && virtual_timer->id == id) {
free(virtual_timer);
virtual_timer = 0;
found = 1;
} else {
while (*t) {
if ((*t)->id == id) {
Timer_Entry *tt = *t;
*t = tt->next;
found = 1;
free(tt);
break;
}
t = &((*t)->next);
}
}
restart_timers();
return found;
}
void
reenable_timers(void)
{
#if HAVE_SIGEMPTYSET
sigset_t sigs;
sigemptyset(&sigs);
sigaddset(&sigs, SIGALRM);
sigprocmask(SIG_UNBLOCK, &sigs, 0);
#else
#if HAVE_SIGSETMASK
int old_mask = sigsetmask(-1); /* block everything, get old mask */
old_mask &= ~sigmask(SIGALRM); /* clear blocked bit for SIGALRM */
sigsetmask(old_mask); /* reset the signal mask */
#else
#if HAVE_SIGRELSE
sigrelse(SIGALRM); /* restore previous signal action */
#else
#error I need some way to stop blocking SIGALRM!
#endif
#endif
#endif
}
char rcsid_timers[] = "$Id: timers.c,v 1.3 1998/12/14 13:19:09 nop Exp $";
/*
* $Log: timers.c,v $
* Revision 1.3 1998/12/14 13:19:09 nop
* Merge UNSAFE_OPTS (ref fixups); fix Log tag placement to fit CVS whims
*
* Revision 1.2 1997/03/03 04:19:33 nop
* GNU Indent normalization
*
* Revision 1.1.1.1 1997/03/03 03:45:01 nop
* LambdaMOO 1.8.0p5
*
* Revision 2.1 1996/02/08 06:43:56 pavel
* Updated copyright notice for 1996. Release 1.8.0beta1.
*
* Revision 2.0 1995/11/30 04:41:20 pavel
* New baseline version, corresponding to release 1.8.0alpha1.
*
* Revision 1.9 1992/10/23 23:03:47 pavel
* Added copyright notice.
*
* Revision 1.8 1992/10/23 22:24:08 pavel
* Eliminated all uses of the useless macro NULL.
*
* Revision 1.7 1992/10/21 03:02:35 pavel
* Converted to use new automatic configuration system.
*
* Revision 1.6 1992/10/17 21:01:52 pavel
* #undef'd ITIMER_VIRTUAL on CMU MACH because it apparently doesn't work on
* that system.
* Added an #ifdef of ITIMER_VIRTUAL around the virtual_wakeup_call()
* signal-handler.
*
* Revision 1.5 1992/09/22 22:48:59 pavel
* Added missing #include of "config.h".
*
* Revision 1.4 1992/08/21 00:45:29 pavel
* Changed to conditionalize on the option AVOID_POSIX rather than USE_POSIX.
*
* Revision 1.3 1992/07/30 00:42:45 pavel
* Add support for compiling on RISC/os 4.52 and NonStop-UX A22.
*
* Revision 1.2 1992/07/21 00:07:26 pavel
* Added rcsid_<filename-root> declaration to hold the RCS ident. string.
*
* Revision 1.1 1992/07/20 23:23:12 pavel
* Initial RCS-controlled version.
*/