aboutsummaryrefslogtreecommitdiffstats
path: root/src/atimer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/atimer.c')
-rw-r--r--src/atimer.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atimer.c b/src/atimer.c
index b947ea59ccd..a54b397f52e 100644
--- a/src/atimer.c
+++ b/src/atimer.c
@@ -64,7 +64,7 @@ static void set_alarm (void);
64static void schedule_atimer (struct atimer *); 64static void schedule_atimer (struct atimer *);
65static struct atimer *append_atimer_lists (struct atimer *, 65static struct atimer *append_atimer_lists (struct atimer *,
66 struct atimer *); 66 struct atimer *);
67void alarm_signal_handler (int signo); 67static void alarm_signal_handler (int signo);
68 68
69 69
70/* Start a new atimer of type TYPE. TIME specifies when the timer is 70/* Start a new atimer of type TYPE. TIME specifies when the timer is
@@ -246,7 +246,7 @@ stop_other_atimers (struct atimer *t)
246/* Run all timers again, if some have been stopped with a call to 246/* Run all timers again, if some have been stopped with a call to
247 stop_other_atimers. */ 247 stop_other_atimers. */
248 248
249void 249static void
250run_all_atimers (void) 250run_all_atimers (void)
251{ 251{
252 if (stopped_atimers) 252 if (stopped_atimers)
@@ -270,7 +270,7 @@ run_all_atimers (void)
270} 270}
271 271
272 272
273/* A version of run_all_timers suitable for a record_unwind_protect. */ 273/* A version of run_all_atimers suitable for a record_unwind_protect. */
274 274
275Lisp_Object 275Lisp_Object
276unwind_stop_other_atimers (Lisp_Object dummy) 276unwind_stop_other_atimers (Lisp_Object dummy)