1 /* Asynchronous timers.
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005,
3 2006, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Emacs.
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
26 #include <syssignal.h>
28 #include <blockinput.h>
35 #ifdef HAVE_SYS_TIME_H
39 /* Free-list of atimer structures. */
41 static struct atimer
*free_atimers
;
43 /* List of currently not running timers due to a call to
46 static struct atimer
*stopped_atimers
;
48 /* List of active atimers, sorted by expiration time. The timer that
49 will become ripe next is always at the front of this list. */
51 static struct atimer
*atimers
;
53 /* Non-zero means alarm_signal_handler has found ripe timers but
54 interrupt_input_blocked was non-zero. In this case, timer
55 functions are not called until the next UNBLOCK_INPUT because timer
56 functions are expected to call X, and X cannot be assumed to be
61 /* Block/unblock SIGALRM. */
63 #define BLOCK_ATIMERS sigblock (sigmask (SIGALRM))
64 #define UNBLOCK_ATIMERS sigunblock (sigmask (SIGALRM))
66 /* Function prototypes. */
68 static void set_alarm
P_ ((void));
69 static void schedule_atimer
P_ ((struct atimer
*));
70 static struct atimer
*append_atimer_lists
P_ ((struct atimer
*,
72 SIGTYPE
alarm_signal_handler ();
75 /* Start a new atimer of type TYPE. TIME specifies when the timer is
76 ripe. FN is the function to call when the timer fires.
77 CLIENT_DATA is stored in the client_data member of the atimer
78 structure returned and so made available to FN when it is called.
80 If TYPE is ATIMER_ABSOLUTE, TIME is the absolute time at which the
83 If TYPE is ATIMER_RELATIVE, the timer is ripe TIME s/us in the
86 In both cases, the timer is automatically freed after it has fired.
88 If TYPE is ATIMER_CONTINUOUS, the timer fires every TIME s/us.
90 Value is a pointer to the atimer started. It can be used in calls
91 to cancel_atimer; don't free it yourself. */
94 start_atimer (type
, time
, fn
, client_data
)
95 enum atimer_type type
;
102 /* Round TIME up to the next full second if we don't have
104 #ifndef HAVE_SETITIMER
105 if (EMACS_USECS (time
) != 0)
107 EMACS_SET_USECS (time
, 0);
108 EMACS_SET_SECS (time
, EMACS_SECS (time
) + 1);
110 #endif /* not HAVE_SETITIMER */
112 /* Get an atimer structure from the free-list, or allocate
117 free_atimers
= t
->next
;
120 t
= (struct atimer
*) xmalloc (sizeof *t
);
122 /* Fill the atimer structure. */
123 bzero (t
, sizeof *t
);
126 t
->client_data
= client_data
;
130 /* Compute the timer's expiration time. */
133 case ATIMER_ABSOLUTE
:
134 t
->expiration
= time
;
137 case ATIMER_RELATIVE
:
138 EMACS_GET_TIME (t
->expiration
);
139 EMACS_ADD_TIME (t
->expiration
, t
->expiration
, time
);
142 case ATIMER_CONTINUOUS
:
143 EMACS_GET_TIME (t
->expiration
);
144 EMACS_ADD_TIME (t
->expiration
, t
->expiration
, time
);
149 /* Insert the timer in the list of active atimers. */
153 /* Arrange for a SIGALRM at the time the next atimer is ripe. */
160 /* Cancel and free atimer TIMER. */
163 cancel_atimer (timer
)
164 struct atimer
*timer
;
170 for (i
= 0; i
< 2; ++i
)
172 struct atimer
*t
, *prev
;
173 struct atimer
**list
= i
? &stopped_atimers
: &atimers
;
175 /* See if TIMER is active or stopped. */
176 for (t
= *list
, prev
= NULL
; t
&& t
!= timer
; prev
= t
, t
= t
->next
)
179 /* If it is, take it off the its list, and put in on the
180 free-list. We don't bother to arrange for setting a
181 different alarm time, since a too early one doesn't hurt. */
185 prev
->next
= t
->next
;
189 t
->next
= free_atimers
;
199 /* Append two lists of atimers LIST1 and LIST2 and return the
202 static struct atimer
*
203 append_atimer_lists (list1
, list2
)
204 struct atimer
*list1
, *list2
;
208 else if (list2
== NULL
)
214 for (p
= list1
; p
->next
; p
= p
->next
)
222 /* Stop all timers except timer T. T null means stop all timers. */
225 stop_other_atimers (t
)
232 struct atimer
*p
, *prev
;
234 /* See if T is active. */
235 for (p
= atimers
, prev
= NULL
; p
&& p
!= t
; prev
= p
, p
= p
->next
)
241 prev
->next
= t
->next
;
247 /* T is not active. Let's handle this like T == 0. */
251 stopped_atimers
= append_atimer_lists (atimers
, stopped_atimers
);
257 /* Run all timers again, if some have been stopped with a call to
258 stop_other_atimers. */
265 struct atimer
*t
= atimers
;
269 atimers
= stopped_atimers
;
270 stopped_atimers
= NULL
;
284 /* A version of run_all_timers suitable for a record_unwind_protect. */
287 unwind_stop_other_atimers (dummy
)
295 /* Arrange for a SIGALRM to arrive when the next timer is ripe. */
300 #if defined (USG) && !defined (POSIX_SIGNALS)
301 /* USG systems forget handlers when they are used;
302 must reestablish each time. */
303 signal (SIGALRM
, alarm_signal_handler
);
308 EMACS_TIME now
, time
;
309 #ifdef HAVE_SETITIMER
313 /* Determine s/us till the next timer is ripe. */
314 EMACS_GET_TIME (now
);
315 EMACS_SUB_TIME (time
, atimers
->expiration
, now
);
317 #ifdef HAVE_SETITIMER
318 /* Don't set the interval to 0; this disables the timer. */
319 if (EMACS_TIME_LE (atimers
->expiration
, now
))
321 EMACS_SET_SECS (time
, 0);
322 EMACS_SET_USECS (time
, 1000);
325 bzero (&it
, sizeof it
);
327 setitimer (ITIMER_REAL
, &it
, 0);
328 #else /* not HAVE_SETITIMER */
329 alarm (max (EMACS_SECS (time
), 1));
330 #endif /* not HAVE_SETITIMER */
335 /* Insert timer T into the list of active atimers `atimers', keeping
336 the list sorted by expiration time. T must not be in this list
343 struct atimer
*a
= atimers
, *prev
= NULL
;
345 /* Look for the first atimer that is ripe after T. */
346 while (a
&& EMACS_TIME_GT (t
->expiration
, a
->expiration
))
347 prev
= a
, a
= a
->next
;
349 /* Insert T in front of the atimer found, if any. */
359 /* Signal handler for SIGALRM. SIGNO is the signal number, i.e.
363 alarm_signal_handler (signo
)
368 SIGNAL_THREAD_CHECK (signo
);
370 EMACS_GET_TIME (now
);
374 && (pending_atimers
= interrupt_input_blocked
) == 0
375 && EMACS_TIME_LE (atimers
->expiration
, now
))
380 atimers
= atimers
->next
;
385 if (t
->type
== ATIMER_CONTINUOUS
)
387 EMACS_ADD_TIME (t
->expiration
, now
, t
->interval
);
392 t
->next
= free_atimers
;
396 /* Fix for Ctrl-G. Perhaps this should apply to all platforms. */
400 EMACS_GET_TIME (now
);
403 if (! pending_atimers
)
408 /* Call alarm_signal_handler for pending timers. */
411 do_pending_atimers ()
416 alarm_signal_handler (SIGALRM
);
422 /* Turn alarms on/off. This seems to be temporarily necessary on
423 some systems like HPUX (see process.c). */
431 signal (SIGALRM
, alarm_signal_handler
);
442 free_atimers
= atimers
= NULL
;
444 signal (SIGALRM
, alarm_signal_handler
);
447 /* arch-tag: e6308261-eec6-404b-89fb-6e5909518d70
448 (do not change this comment) */