diff options
Diffstat (limited to 'src/atimer.c')
| -rw-r--r-- | src/atimer.c | 6 |
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); | |||
| 64 | static void schedule_atimer (struct atimer *); | 64 | static void schedule_atimer (struct atimer *); |
| 65 | static struct atimer *append_atimer_lists (struct atimer *, | 65 | static struct atimer *append_atimer_lists (struct atimer *, |
| 66 | struct atimer *); | 66 | struct atimer *); |
| 67 | void alarm_signal_handler (int signo); | 67 | static 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 | ||
| 249 | void | 249 | static void |
| 250 | run_all_atimers (void) | 250 | run_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 | ||
| 275 | Lisp_Object | 275 | Lisp_Object |
| 276 | unwind_stop_other_atimers (Lisp_Object dummy) | 276 | unwind_stop_other_atimers (Lisp_Object dummy) |