428
|
1 /* Handling asynchronous signals.
|
|
2 Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
|
593
|
3 Copyright (C) 1995, 1996, 2001 Ben Wing.
|
428
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Not synched with FSF. Split out of keyboard.c. */
|
|
23
|
|
24 #include <config.h>
|
|
25 #include "lisp.h"
|
|
26
|
|
27 #include "console.h"
|
800
|
28 #include "device.h"
|
428
|
29 #include "events.h" /* for signal_fake_event() */
|
|
30 #include "frame.h"
|
593
|
31 #include "process.h"
|
611
|
32
|
428
|
33 #include "sysdep.h"
|
611
|
34 #include "sysfile.h"
|
428
|
35 #include "syssignal.h"
|
|
36 #include "systime.h"
|
|
37
|
|
38 /* Set to 1 when a quit-check signal (either a SIGIO interrupt or
|
|
39 the asynch. timeout for poll-for-quit) occurs. The QUITP
|
|
40 macro may look at this. */
|
|
41 volatile int quit_check_signal_happened;
|
|
42
|
|
43 /* Count of the number of times a quit-check signal has occurred.
|
|
44 Some stuff in event-Xt.c looks at this. */
|
|
45 volatile int quit_check_signal_tick_count;
|
|
46
|
|
47 /* Set to 1 when a SIGINT (or SIGQUIT) interrupt is processed.
|
|
48 maybe_read_quit_event() looks at this. */
|
|
49 volatile int sigint_happened;
|
|
50
|
|
51 /* Set to 1 when an asynch. timeout signal occurs. */
|
593
|
52 static volatile int async_timeout_happened;
|
|
53
|
|
54 /* Set to 1 when a multiple of SLOWED_DOWN_INTERRUPTS_SECS elapses,
|
|
55 after slow_down_interrupts() is called. */
|
|
56 static volatile int slowed_interrupt_timeout_happened;
|
428
|
57
|
|
58 /* This is used to synchronize setting the waiting_for_user_input_p
|
|
59 flag. */
|
593
|
60 static volatile int async_timeout_happened_while_emacs_was_blocking;
|
428
|
61
|
|
62 /* See check_quit() for when this is set. */
|
|
63 int dont_check_for_quit;
|
|
64
|
593
|
65 static int poll_for_quit_id;
|
|
66 static int poll_for_sigchld_id;
|
428
|
67
|
|
68 /* This variable is used to communicate to a lisp
|
|
69 process-filter/sentinel/asynchronous callback (via the function
|
|
70 Fwaiting_for_user_input_p below) whether XEmacs was waiting for
|
|
71 user-input when that process-filter was called. */
|
|
72 static int waiting_for_user_input_p;
|
|
73
|
|
74 static int interrupts_slowed_down;
|
|
75
|
|
76 #define SLOWED_DOWN_INTERRUPTS_SECS 15
|
|
77 #define NORMAL_QUIT_CHECK_TIMEOUT_MSECS 250
|
|
78 #define NORMAL_SIGCHLD_CHECK_TIMEOUT_MSECS 250
|
|
79
|
|
80 /* Used so that signals can break out of system calls that aren't
|
|
81 naturally interruptible. */
|
|
82
|
|
83 JMP_BUF break_system_call_jump;
|
|
84 volatile int can_break_system_calls;
|
|
85
|
593
|
86 static SIGTYPE alarm_signal (int signo);
|
|
87
|
|
88
|
428
|
89
|
|
90 /**********************************************************************/
|
|
91 /* Asynchronous timeout functions */
|
|
92 /**********************************************************************/
|
|
93
|
593
|
94 /* See the comment in event-stream.c, under major heading "Timeouts",
|
|
95 for the difference between low-level (one-shot) and high-level
|
|
96 (periodic/resignaling) timeouts. */
|
|
97
|
428
|
98 /* The pending timers are stored in an ordered list, where the first timer
|
|
99 on the list is the first one to fire. Times recorded here are
|
|
100 absolute. */
|
|
101 static struct low_level_timeout *async_timer_queue;
|
|
102
|
|
103 /* Nonzero means async timers are temporarily suppressed. */
|
|
104 static int async_timer_suppress_count;
|
|
105
|
|
106 static void
|
|
107 set_one_shot_timer (EMACS_TIME interval)
|
|
108 {
|
|
109 #ifdef HAVE_SETITIMER
|
|
110 struct itimerval it;
|
|
111 it.it_value = interval;
|
|
112 EMACS_SET_SECS_USECS (it.it_interval, 0, 0);
|
611
|
113 qxe_setitimer (ITIMER_REAL, &it, 0);
|
428
|
114 #else
|
|
115 int secs;
|
|
116 EMACS_TIME_TO_INT (interval, secs);
|
|
117 alarm (secs);
|
|
118 #endif
|
|
119 }
|
|
120
|
|
121 static void
|
|
122 reset_interval_timer (void)
|
|
123 {
|
|
124 EMACS_TIME interval;
|
|
125
|
|
126 /* Get the interval to set. If an interval is available,
|
|
127 make sure it's not zero (this is a valid return, but it will
|
|
128 cause the timer to get disabled, so convert it to a very short
|
|
129 time). */
|
|
130 if (get_low_level_timeout_interval (async_timer_queue, &interval))
|
|
131 {
|
|
132 if (EMACS_SECS (interval) == 0 && EMACS_USECS (interval) == 0)
|
|
133 EMACS_SET_USECS (interval, 1);
|
|
134 }
|
|
135 else
|
|
136 /* A time of 0 means "disable". */
|
|
137 EMACS_SET_SECS_USECS (interval, 0, 0);
|
|
138
|
|
139 set_one_shot_timer (interval);
|
|
140 }
|
|
141
|
|
142
|
|
143 static void
|
|
144 init_async_timeouts (void)
|
|
145 {
|
613
|
146 set_timeout_signal (SIGALRM, alarm_signal);
|
428
|
147 async_timer_suppress_count = 0;
|
|
148 }
|
|
149
|
|
150 /* Turn off async timeouts. */
|
|
151
|
|
152 static void
|
|
153 stop_async_timeouts (void)
|
|
154 {
|
|
155 if (async_timer_suppress_count == 0)
|
|
156 {
|
|
157 /* If timer was on, turn it off. */
|
|
158 EMACS_TIME thyme;
|
|
159 EMACS_SET_SECS_USECS (thyme, 0, 0);
|
|
160 set_one_shot_timer (thyme);
|
|
161 }
|
|
162 async_timer_suppress_count++;
|
|
163 }
|
|
164
|
|
165 /* Turn on async timeouts again. */
|
|
166
|
|
167 static void
|
|
168 start_async_timeouts (void)
|
|
169 {
|
|
170 assert (async_timer_suppress_count > 0);
|
|
171 async_timer_suppress_count--;
|
|
172 if (async_timer_suppress_count == 0)
|
|
173 {
|
|
174 /* Some callers turn off async timeouts and then use the alarm
|
|
175 for their own purposes; so reinitialize everything. */
|
613
|
176 set_timeout_signal (SIGALRM, alarm_signal);
|
428
|
177 reset_interval_timer ();
|
|
178 }
|
|
179 }
|
|
180
|
593
|
181 static void
|
|
182 handle_async_timeout_signal (void)
|
428
|
183 {
|
593
|
184 int interval_id;
|
|
185 int wakeup_id;
|
|
186 Lisp_Object fun, arg;
|
771
|
187 /* Avoid any possibility of GC during QUIT */
|
|
188 int specco = begin_gc_forbidden ();
|
593
|
189
|
|
190 /* No checks for Vinhibit_quit here or anywhere else in this file!!!
|
|
191 Otherwise critical quit will not work right.
|
771
|
192 The only check for Vinhibit_quit is in QUIT itself.
|
|
193
|
|
194 (#### ???? I don't quite understand this comment.) */
|
593
|
195 interval_id = pop_low_level_timeout (&async_timer_queue, 0);
|
|
196
|
|
197 reset_interval_timer ();
|
|
198 if (async_timeout_happened_while_emacs_was_blocking)
|
|
199 {
|
|
200 async_timeout_happened_while_emacs_was_blocking = 0;
|
|
201 waiting_for_user_input_p = 1;
|
|
202 }
|
|
203
|
|
204 wakeup_id = event_stream_resignal_wakeup (interval_id, 1, &fun, &arg);
|
428
|
205
|
593
|
206 if (wakeup_id == poll_for_quit_id)
|
|
207 {
|
|
208 quit_check_signal_happened = 1;
|
|
209 quit_check_signal_tick_count++;
|
|
210 }
|
|
211 else if (wakeup_id == poll_for_sigchld_id)
|
428
|
212 {
|
593
|
213 kick_status_notify ();
|
428
|
214 }
|
593
|
215 else
|
|
216 /* call1 GC-protects its arguments */
|
|
217 call1_trapping_errors ("Error in asynchronous timeout callback",
|
|
218 fun, arg);
|
|
219
|
|
220 waiting_for_user_input_p = 0;
|
771
|
221
|
|
222 unbind_to (specco);
|
593
|
223 }
|
|
224
|
|
225 /* The following two functions are the external interface onto
|
|
226 creating/deleting asynchronous interval timeouts, and are
|
|
227 called by event-stream.c. We call back to event-stream.c using
|
|
228 event_stream_resignal_wakeup(), when an interval goes off. */
|
|
229
|
|
230 int
|
|
231 signal_add_async_interval_timeout (EMACS_TIME thyme)
|
|
232 {
|
|
233 int id = add_low_level_timeout (&async_timer_queue, thyme);
|
|
234
|
|
235 /* If this timeout is at the head of the queue, then we need to
|
|
236 set the timer right now for this timeout. Otherwise, things
|
|
237 are fine as-is; after the timers ahead of us are signalled,
|
|
238 the timer will be set for us. */
|
|
239
|
|
240 if (async_timer_queue->id == id)
|
|
241 reset_interval_timer ();
|
|
242
|
|
243 return id;
|
428
|
244 }
|
|
245
|
|
246 void
|
593
|
247 signal_remove_async_interval_timeout (int id)
|
428
|
248 {
|
593
|
249 int first = (async_timer_queue && async_timer_queue->id == id);
|
|
250 remove_low_level_timeout (&async_timer_queue, id);
|
|
251
|
|
252 /* If we removed the timeout from the head of the queue, then
|
|
253 we need to reset the interval timer right now. */
|
|
254 if (first)
|
|
255 reset_interval_timer ();
|
428
|
256 }
|
|
257
|
593
|
258 /* If alarm() gets called when polling isn't disabled, it will mess up
|
|
259 the asynchronous timeouts, and then C-g checking won't work again.
|
|
260 Some libraries call alarm() directly, so we override the standard
|
|
261 library's alarm() and abort() if the caller of the library function
|
|
262 didn't wrap in stop_interrupts()/start_interrupts().
|
428
|
263
|
593
|
264 NOTE: We could potentially avoid the need to wrap by adding a
|
|
265 one-shot timeout to simulate the alarm(), smashing our signal
|
|
266 handler back into place, and calling the library function when the
|
|
267 alarm goes off. But do we want to? We're not going to gain the
|
|
268 ability to C-g out of library functions this way (unless we forcibly
|
|
269 longjmp() out of a signal handler, which is likely to lead to a
|
|
270 crash). --ben */
|
428
|
271
|
|
272 #ifdef HAVE_SETITIMER
|
611
|
273
|
428
|
274 unsigned int
|
|
275 alarm (unsigned int howlong)
|
|
276 {
|
|
277 struct itimerval old_it, new_it;
|
|
278
|
|
279 assert (async_timer_suppress_count > 0);
|
|
280
|
|
281 new_it.it_value.tv_sec = howlong;
|
|
282 new_it.it_value.tv_usec = 0;
|
|
283 new_it.it_interval.tv_sec = 0;
|
|
284 new_it.it_interval.tv_usec = 0;
|
611
|
285 qxe_setitimer (ITIMER_REAL, &new_it, &old_it);
|
428
|
286
|
|
287 /* Never return zero if there was a timer outstanding. */
|
|
288 return old_it.it_value.tv_sec + (old_it.it_value.tv_usec > 0 ? 1 : 0);
|
|
289 }
|
611
|
290
|
|
291 int
|
|
292 qxe_setitimer (int kind, const struct itimerval *itnew,
|
|
293 struct itimerval *itold)
|
|
294 {
|
|
295 #if defined (WIN32_NATIVE) || defined (CYGWIN)
|
|
296 /* setitimer() does not exist on native MS Windows, and appears broken
|
617
|
297 on Cygwin. See win32.c.
|
|
298
|
|
299 We are emulating the Unix98 setitimer() function, as found in its
|
|
300 incarnations on modern versions of Unix. Note however that in
|
|
301 the win32.c version, ITNEW and ITOLD must be equal if both are
|
|
302 non-zero, due to limitations in the underlying multimedia-timer
|
|
303 API. */
|
611
|
304 return mswindows_setitimer (kind, itnew, itold);
|
|
305 #else
|
617
|
306 /* YUCK! glibc defines setitimer's first argument as
|
|
307 enum __itimer_which, not int, which causes compile errors if
|
|
308 we call setitimer() in the obvious way. */
|
|
309 switch (kind)
|
|
310 {
|
|
311 case ITIMER_REAL: return setitimer (ITIMER_REAL, itnew, itold);
|
|
312 case ITIMER_VIRTUAL: return setitimer (ITIMER_VIRTUAL, itnew, itold);
|
|
313 case ITIMER_PROF: return setitimer (ITIMER_PROF, itnew, itold);
|
|
314 default: abort (); return 0;
|
|
315 }
|
428
|
316 #endif
|
611
|
317 }
|
|
318
|
|
319 #endif /* HAVE_SETITIMER */
|
|
320
|
613
|
321 signal_handler_t
|
|
322 set_timeout_signal (int signal_number, signal_handler_t action)
|
|
323 {
|
|
324 #ifdef CYGWIN_BROKEN_SIGNALS
|
|
325 return mswindows_sigset (signal_number, action);
|
|
326 #else
|
|
327 return EMACS_SIGNAL (signal_number, action);
|
|
328 #endif
|
|
329 }
|
428
|
330
|
|
331 DEFUN ("waiting-for-user-input-p", Fwaiting_for_user_input_p, 0, 0, 0, /*
|
|
332 Return non-nil if XEmacs is waiting for input from the user.
|
|
333 This is intended for use by asynchronous timeout callbacks and by
|
|
334 asynchronous process output filters and sentinels (not yet implemented
|
|
335 in XEmacs). It will always be nil if XEmacs is not inside of
|
|
336 an asynchronous timeout or process callback.
|
|
337 */
|
|
338 ())
|
|
339 {
|
|
340 return waiting_for_user_input_p ? Qt : Qnil;
|
|
341 }
|
|
342
|
|
343
|
|
344 /**********************************************************************/
|
593
|
345 /* Enabling/disabling signals */
|
|
346 /**********************************************************************/
|
|
347
|
|
348 static int interrupts_initted;
|
|
349
|
|
350 void
|
|
351 stop_interrupts (void)
|
|
352 {
|
|
353 if (!interrupts_initted)
|
|
354 return;
|
|
355 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
356 unrequest_sigio ();
|
|
357 #endif
|
|
358 stop_async_timeouts ();
|
|
359 }
|
|
360
|
|
361 void
|
|
362 start_interrupts (void)
|
|
363 {
|
|
364 if (!interrupts_initted)
|
|
365 return;
|
|
366 #if defined(SIGIO) && !defined(BROKEN_SIGIO)
|
|
367 request_sigio ();
|
|
368 #endif
|
|
369 start_async_timeouts ();
|
|
370 }
|
|
371
|
|
372
|
|
373 static void
|
|
374 establish_slow_interrupt_timer (void)
|
|
375 {
|
|
376 EMACS_TIME thyme;
|
|
377
|
|
378 EMACS_SET_SECS_USECS (thyme, SLOWED_DOWN_INTERRUPTS_SECS, 0);
|
|
379 set_one_shot_timer (thyme);
|
|
380 }
|
|
381
|
|
382 /* Some functions don't like being interrupted with SIGALRM or SIGIO.
|
|
383 Previously we were calling stop_interrupts() / start_interrupts(),
|
|
384 but then if the program hangs in one of those functions, e.g.
|
|
385 waiting for a connect(), we're really screwed. So instead we
|
|
386 just "slow them down". We do this by disabling all interrupts
|
|
387 and then installing a timer of length fairly large, like 5 or
|
|
388 10 secs. That way, any "legitimate" connections (which should
|
|
389 take a fairly short amount of time) go through OK, but we can
|
|
390 interrupt bogus ones. */
|
|
391
|
|
392 void
|
|
393 slow_down_interrupts (void)
|
|
394 {
|
|
395 /* We have to set the flag *before* setting the slowed-down timer,
|
|
396 to avoid a race condition -- if the signal occurs between the
|
|
397 call to set_one_shot_timer() and the setting of this flag,
|
|
398 async_timeout_happened will get set, which will be a Bad Thing if
|
|
399 there were no timeouts on the queue. */
|
|
400 interrupts_slowed_down++;
|
|
401 if (interrupts_slowed_down == 1)
|
|
402 {
|
|
403 stop_interrupts ();
|
|
404 establish_slow_interrupt_timer ();
|
|
405 }
|
|
406 }
|
|
407
|
|
408 void
|
|
409 speed_up_interrupts (void)
|
|
410 {
|
|
411 if (interrupts_slowed_down > 0)
|
|
412 {
|
|
413 start_interrupts ();
|
|
414 /* Change this flag AFTER fiddling with interrupts, for the same
|
|
415 race-condition reasons as above. */
|
|
416 interrupts_slowed_down--;
|
|
417 }
|
|
418 }
|
|
419
|
|
420
|
|
421 /**********************************************************************/
|
|
422 /* The mechanism that drives it all */
|
428
|
423 /**********************************************************************/
|
|
424
|
593
|
425 /* called from QUIT when something_happened gets set (as a result of
|
|
426 a signal) */
|
|
427
|
|
428 int
|
|
429 check_what_happened (void)
|
|
430 {
|
771
|
431 /* No GC can happen anywhere here. handle_async_timeout_signal()
|
|
432 prevents GC (from asynch timeout handler), so does check_quit()
|
|
433 (from processing a message such as WM_INITMENU as a result of
|
|
434 draining the message queue). establish_slow_interrupt_timer() is
|
|
435 too low-level to do anything that might invoke QUIT or call Lisp
|
|
436 code. */
|
593
|
437 something_happened = 0;
|
|
438 if (async_timeout_happened)
|
|
439 {
|
|
440 async_timeout_happened = 0;
|
|
441 handle_async_timeout_signal ();
|
|
442 }
|
|
443 if (slowed_interrupt_timeout_happened)
|
|
444 {
|
|
445 slowed_interrupt_timeout_happened = 0;
|
|
446 establish_slow_interrupt_timer ();
|
|
447 }
|
|
448
|
|
449 return check_quit ();
|
|
450 }
|
|
451
|
|
452 #ifdef SIGIO
|
|
453
|
|
454 /* Signal handler for SIGIO. */
|
|
455
|
|
456 static void
|
|
457 input_available_signal (int signo)
|
|
458 {
|
|
459 something_happened = 1; /* tell QUIT to wake up */
|
|
460 quit_check_signal_happened = 1;
|
|
461 quit_check_signal_tick_count++;
|
|
462 EMACS_REESTABLISH_SIGNAL (signo, input_available_signal);
|
|
463 SIGRETURN;
|
|
464 }
|
|
465
|
|
466 #endif /* SIGIO */
|
|
467
|
|
468 /* Actual signal handler for SIGALRM. Called when:
|
|
469
|
|
470 -- asynchronous timeouts (added with `add-async-timeout') go off
|
|
471
|
|
472 -- when the poll-for-quit timer (used for C-g handling; more or
|
|
473 less when SIGIO is unavailable or BROKEN_SIGIO is defined) or
|
|
474 poll-for-sigchld timer (used when BROKEN_SIGCHLD is defined) go
|
|
475 off. The latter two timers, if set, normally go off every 1/4
|
|
476 of a second -- see NORMAL_QUIT_CHECK_TIMEOUT_MSECS and
|
|
477 NORMAL_SIGCHLD_CHECK_TIMEOUT_MSECS. (Both of these timers are
|
|
478 treated like other asynchronous timeouts, but special-cased
|
|
479 in handle_async_timeout_signal().)
|
|
480
|
|
481 -- we called slow_down_interrupts() and SLOWED_DOWN_INTERRUPTS_SECS
|
|
482 (or a multiple of it) has elapsed.
|
|
483
|
|
484 Note that under Windows, we have no working setitimer(), so we
|
|
485 simulate it using the multimedia timeout functions,
|
|
486 e.g. timeSetEvent(). See setitimer() in nt.c.
|
|
487
|
|
488 Note also that we don't actually *do* anything here (except in the
|
|
489 case of can_break_system_calls). Instead, we just set various
|
|
490 flags; next time QUIT is called, the flags will cause
|
|
491 check_what_happened() to be called, at which point we do everything
|
|
492 indicated by the flags.
|
|
493 */
|
|
494
|
|
495 static SIGTYPE
|
|
496 alarm_signal (int signo)
|
|
497 {
|
|
498 something_happened = 1; /* tell QUIT to wake up and call
|
|
499 check_what_happened() */
|
|
500
|
|
501 if (interrupts_slowed_down)
|
|
502 {
|
|
503 /* we are in "slowed-down interrupts" mode; the only alarm
|
|
504 happening here is the slowed-down quit-check alarm, so
|
|
505 we set this flag.
|
|
506
|
|
507 Do NOT set async_timeout_happened, because we don't want
|
|
508 anyone looking at the timeout queue -- async timeouts
|
|
509 are disabled. */
|
|
510 quit_check_signal_happened = 1;
|
|
511 quit_check_signal_tick_count++;
|
|
512 /* make sure we establish the slow timer again. */
|
|
513 slowed_interrupt_timeout_happened = 1;
|
|
514
|
|
515 /* can_break_system_calls is set when we want to break out of
|
|
516 non-interruptible system calls. */
|
|
517 if (can_break_system_calls)
|
|
518 {
|
|
519 /* reset the flag for safety and such. Do this *before*
|
|
520 unblocking or reestablishing the signal to avoid potential
|
|
521 race conditions. */
|
|
522 can_break_system_calls = 0;
|
|
523 #ifndef WIN32_NATIVE
|
|
524 /* #### I didn't add this WIN32_NATIVE check. I'm not sure
|
|
525 why it's here. But then again, someone needs to review
|
|
526 this can_break_system_calls stuff and see if it still
|
|
527 makes sense. --ben */
|
|
528 EMACS_UNBLOCK_SIGNAL (signo);
|
|
529 EMACS_REESTABLISH_SIGNAL (signo, alarm_signal);
|
|
530 LONGJMP (break_system_call_jump, 0);
|
|
531 #endif
|
|
532 }
|
|
533 }
|
|
534 else
|
|
535 {
|
|
536 async_timeout_happened = 1;
|
|
537 if (emacs_is_blocking)
|
|
538 async_timeout_happened_while_emacs_was_blocking = 1;
|
|
539 /* #### This is for QUITP. When it is run, it may not be the
|
|
540 place to do arbitrary stuff like run asynch. handlers, but
|
|
541 it needs to know whether the poll-for-quit asynch. timeout
|
|
542 went off. Rather than put the code in to compute this
|
|
543 specially, we just set this flag. Should fix this. */
|
|
544 quit_check_signal_happened = 1;
|
|
545
|
|
546 #ifdef HAVE_UNIXOID_EVENT_LOOP
|
|
547 signal_fake_event ();
|
|
548 #endif
|
|
549 }
|
|
550
|
|
551 EMACS_REESTABLISH_SIGNAL (signo, alarm_signal);
|
|
552 SIGRETURN;
|
|
553 }
|
|
554
|
428
|
555 /* Set this for debugging, to have a way to get out */
|
|
556 int stop_character; /* #### not currently implemented */
|
|
557
|
593
|
558 /* Signal handler for SIGINT and SIGQUIT. On TTY's, one of these two
|
|
559 signals will get generated in response to C-g. (When running under
|
|
560 X, C-g is handled using the SIGIO handler, which sets a flag
|
|
561 telling the QUIT macro to scan the unread events for a ^G.)
|
|
562 */
|
428
|
563
|
|
564 static SIGTYPE
|
|
565 interrupt_signal (int sig)
|
|
566 {
|
|
567 /* This function can call lisp */
|
|
568 /* #### we should NOT be calling lisp from a signal handler, boys
|
|
569 and girls */
|
|
570 /* Must preserve main program's value of errno. */
|
|
571 int old_errno = errno;
|
|
572
|
|
573 EMACS_REESTABLISH_SIGNAL (sig, interrupt_signal);
|
|
574
|
|
575 if (sigint_happened && CONSOLEP (Vcontrolling_terminal) &&
|
|
576 CONSOLE_LIVE_P (XCONSOLE (Vcontrolling_terminal)) &&
|
|
577 !emacs_is_blocking)
|
|
578 {
|
593
|
579 /* #### this is inherited from GNU Emacs. Do we really want this?
|
|
580 --ben */
|
428
|
581 char c;
|
|
582 fflush (stdout);
|
|
583 reset_initial_console ();
|
|
584 EMACS_UNBLOCK_SIGNAL (sig);
|
|
585 #ifdef SIGTSTP /* Support possible in later USG versions */
|
|
586 /*
|
|
587 * On systems which can suspend the current process and return to the original
|
|
588 * shell, this command causes the user to end up back at the shell.
|
|
589 * The "Auto-save" and "Abort" questions are not asked until
|
|
590 * the user elects to return to emacs, at which point he can save the current
|
|
591 * job and either dump core or continue.
|
|
592 */
|
|
593 sys_suspend ();
|
|
594 #else
|
|
595 /* Perhaps should really fork an inferior shell?
|
|
596 But that would not provide any way to get back
|
|
597 to the original shell, ever. */
|
|
598 stdout_out ("No support for stopping a process on this operating system;\n");
|
|
599 stdout_out ("you can continue or abort.\n");
|
|
600 #endif /* not SIGTSTP */
|
|
601 stdout_out ("Auto-save? (y or n) ");
|
|
602 if (((c = getc (stdin)) & ~040) == 'Y')
|
|
603 Fdo_auto_save (Qnil, Qnil);
|
|
604 while (c != '\n')
|
|
605 c = getc (stdin);
|
|
606 stdout_out ("Abort (and dump core)? (y or n) ");
|
|
607 if (((c = getc (stdin)) & ~040) == 'Y')
|
|
608 abort ();
|
|
609 while (c != '\n')
|
|
610 c = getc (stdin);
|
|
611 stdout_out ("Continuing...\n");
|
|
612 reinit_initial_console ();
|
|
613 MARK_FRAME_CHANGED (XFRAME (DEVICE_SELECTED_FRAME
|
|
614 (XDEVICE (CONSOLE_SELECTED_DEVICE
|
|
615 (XCONSOLE
|
|
616 (Vcontrolling_terminal))))));
|
|
617 }
|
|
618 else
|
|
619 {
|
|
620 /* Else request quit when it's safe */
|
|
621 Vquit_flag = Qt;
|
|
622 sigint_happened = 1;
|
|
623 #ifdef HAVE_UNIXOID_EVENT_LOOP
|
|
624 signal_fake_event ();
|
|
625 #endif
|
|
626 }
|
|
627 errno = old_errno;
|
|
628 SIGRETURN;
|
|
629 }
|
|
630
|
593
|
631
|
|
632 /**********************************************************************/
|
|
633 /* Control-G checking */
|
|
634 /**********************************************************************/
|
|
635
|
428
|
636 static Lisp_Object
|
|
637 restore_dont_check_for_quit (Lisp_Object val)
|
|
638 {
|
|
639 dont_check_for_quit = XINT (val);
|
|
640 return Qnil;
|
|
641 }
|
|
642
|
771
|
643 /* Defer all checking or processing of C-g. You can do this, for example,
|
|
644 if you want to read C-g's as events. (In that case, you should set
|
|
645 Vquit_flag to Qnil just before you unbind, because it typically gets set
|
|
646 as a result of reading C-g.) */
|
|
647
|
|
648 int
|
428
|
649 begin_dont_check_for_quit (void)
|
|
650 {
|
771
|
651 int depth = specpdl_depth ();
|
|
652 /* As an optimization in QUIT_FLAG_SAYS_SHOULD_QUIT, we bind inhibit-quit
|
|
653 to t -- it has to be checked anyway, and by doing this, we only need
|
|
654 to check dont_check_for_quit when quit-flag == `critical', which is
|
|
655 rare. */
|
428
|
656 specbind (Qinhibit_quit, Qt);
|
|
657 record_unwind_protect (restore_dont_check_for_quit,
|
|
658 make_int (dont_check_for_quit));
|
|
659 dont_check_for_quit = 1;
|
771
|
660
|
|
661 return depth;
|
428
|
662 }
|
|
663
|
|
664 /* The effect of this function is to set Vquit_flag if the user pressed
|
|
665 ^G and discard the ^G, so as to not notice the same ^G again. */
|
|
666 int
|
|
667 check_quit (void)
|
|
668 {
|
|
669 /* dont_check_for_quit is set in two circumstances:
|
|
670
|
|
671 (1) when we are in the process of changing the window
|
|
672 configuration. The frame might be in an inconsistent state,
|
|
673 which will cause assertion failures if we check for QUIT.
|
|
674
|
|
675 (2) when we are reading events, and want to read the C-g
|
|
676 as an event. The normal check for quit will discard the C-g,
|
|
677 which would be bad.
|
|
678
|
771
|
679 [[#### C-g is still often read as quit, e.g. if you type C-x C-g (the
|
|
680 C-g happens during the sit-for in maybe_echo_keys(); even if we
|
|
681 attempt to inhibit quit here, there is still a check later on for
|
|
682 QUIT. To fix this properly requires a fairly substantial overhaul of
|
|
683 the quit-checking code, which is probably not worth it.)]] not true,
|
|
684 we just have to always do dont_check_for_quit around all code that
|
|
685 reads events. my stderr-proc ws already does this.
|
428
|
686
|
|
687 We should *not* conditionalize on Vinhibit_quit, or
|
|
688 critical-quit (Control-Shift-G) won't work right. */
|
|
689
|
771
|
690 /* WARNING: Even calling check_quit(), without actually dispatching
|
|
691 a quit signal, can result in arbitrary Lisp code getting executed
|
|
692 -- at least under Windows. (Not to mention obvious Lisp
|
|
693 invocations like asynchronous timer callbacks.) Here's a sample
|
|
694 stack trace to demonstrate:
|
|
695
|
|
696 NTDLL! DbgBreakPoint@0 address 0x77f9eea9
|
|
697 assert_failed(const char * 0x012d036c, int 4596, const char * 0x012d0354) line 3478
|
|
698 re_match_2_internal(re_pattern_buffer * 0x012d6780, const unsigned char * 0x00000000, int 0, const unsigned char * 0x022f9328, int 34, int 0, re_registers * 0x012d53d0 search_regs, int 34) line 4596 + 41 bytes
|
|
699 re_search_2(re_pattern_buffer * 0x012d6780, const char * 0x00000000, int 0, const char * 0x022f9328, int 34, int 0, int 34, re_registers * 0x012d53d0 search_regs, int 34) line 4269 + 37 bytes
|
|
700 re_search(re_pattern_buffer * 0x012d6780, const char * 0x022f9328, int 34, int 0, int 34, re_registers * 0x012d53d0 search_regs) line 4031 + 37 bytes
|
|
701 string_match_1(long 31222628, long 30282164, long 28377092, buffer * 0x022fde00, int 0) line 413 + 69 bytes
|
|
702 Fstring_match(long 31222628, long 30282164, long 28377092, long 28377092) line 436 + 34 bytes
|
|
703 Ffuncall(int 3, long * 0x008297f8) line 3488 + 168 bytes
|
|
704 execute_optimized_program(const unsigned char * 0x020ddc50, int 6, long * 0x020ddf50) line 744 + 16 bytes
|
|
705 funcall_compiled_function(long 34407748, int 1, long * 0x00829aec) line 516 + 53 bytes
|
|
706 Ffuncall(int 2, long * 0x00829ae8) line 3523 + 17 bytes
|
|
707 execute_optimized_program(const unsigned char * 0x020ddc90, int 4, long * 0x020ddf90) line 744 + 16 bytes
|
|
708 funcall_compiled_function(long 34407720, int 1, long * 0x00829e28) line 516 + 53 bytes
|
|
709 Ffuncall(int 2, long * 0x00829e24) line 3523 + 17 bytes
|
|
710 mapcar1(long 15, long * 0x00829e48, long 34447820, long 34187868) line 2929 + 11 bytes
|
|
711 Fmapcar(long 34447820, long 34187868) line 3035 + 21 bytes
|
|
712 Ffuncall(int 3, long * 0x00829f20) line 3488 + 93 bytes
|
|
713 execute_optimized_program(const unsigned char * 0x020c2b70, int 7, long * 0x020dd010) line 744 + 16 bytes
|
|
714 funcall_compiled_function(long 34407580, int 2, long * 0x0082a210) line 516 + 53 bytes
|
|
715 Ffuncall(int 3, long * 0x0082a20c) line 3523 + 17 bytes
|
|
716 execute_optimized_program(const unsigned char * 0x020cf810, int 6, long * 0x020cfb10) line 744 + 16 bytes
|
|
717 funcall_compiled_function(long 34407524, int 0, long * 0x0082a580) line 516 + 53 bytes
|
|
718 Ffuncall(int 1, long * 0x0082a57c) line 3523 + 17 bytes
|
|
719 run_hook_with_args_in_buffer(buffer * 0x022fde00, int 1, long * 0x0082a57c, int 0) line 3980 + 13 bytes
|
|
720 run_hook_with_args(int 1, long * 0x0082a57c, int 0) line 3993 + 23 bytes
|
|
721 Frun_hooks(int 1, long * 0x0082a57c) line 3847 + 19 bytes
|
|
722 run_hook(long 34447484) line 4094 + 11 bytes
|
|
723 unsafe_handle_wm_initmenu_1(frame * 0x01dbb000) line 736 + 11 bytes
|
|
724 unsafe_handle_wm_initmenu(long 28377092) line 807 + 11 bytes
|
|
725 condition_case_1(long 28377116, long (long)* 0x0101c827 unsafe_handle_wm_initmenu(long), long 28377092, long (long, long)* 0x01005fa4 mswindows_modal_loop_error_handler(long, long), long 28377092) line 1692 + 7 bytes
|
|
726 mswindows_protect_modal_loop(long (long)* 0x0101c827 unsafe_handle_wm_initmenu(long), long 28377092) line 1194 + 32 bytes
|
|
727 mswindows_handle_wm_initmenu(HMENU__ * 0x00010199, frame * 0x01dbb000) line 826 + 17 bytes
|
|
728 mswindows_wnd_proc(HWND__ * 0x000501da, unsigned int 278, unsigned int 65945, long 0) line 3089 + 31 bytes
|
|
729 USER32! UserCallWinProc@20 + 24 bytes
|
|
730 USER32! DispatchClientMessage@20 + 47 bytes
|
|
731 USER32! __fnDWORD@4 + 34 bytes
|
|
732 NTDLL! KiUserCallbackDispatcher@12 + 19 bytes
|
|
733 USER32! DispatchClientMessage@20 address 0x77e163cc
|
|
734 USER32! DefWindowProcW@16 + 34 bytes
|
|
735 qxeDefWindowProc(HWND__ * 0x000501da, unsigned int 274, unsigned int 61696, long 98) line 1188 + 22 bytes
|
|
736 mswindows_wnd_proc(HWND__ * 0x000501da, unsigned int 274, unsigned int 61696, long 98) line 3362 + 21 bytes
|
|
737 USER32! UserCallWinProc@20 + 24 bytes
|
|
738 USER32! DispatchClientMessage@20 + 47 bytes
|
|
739 USER32! __fnDWORD@4 + 34 bytes
|
|
740 NTDLL! KiUserCallbackDispatcher@12 + 19 bytes
|
|
741 USER32! DispatchClientMessage@20 address 0x77e163cc
|
|
742 USER32! DefWindowProcW@16 + 34 bytes
|
|
743 qxeDefWindowProc(HWND__ * 0x000501da, unsigned int 262, unsigned int 98, long 540016641) line 1188 + 22 bytes
|
|
744 mswindows_wnd_proc(HWND__ * 0x000501da, unsigned int 262, unsigned int 98, long 540016641) line 3362 + 21 bytes
|
|
745 USER32! UserCallWinProc@20 + 24 bytes
|
|
746 USER32! DispatchMessageWorker@8 + 244 bytes
|
|
747 USER32! DispatchMessageW@4 + 11 bytes
|
|
748 qxeDispatchMessage(const tagMSG * 0x0082c684 {msg=0x00000106 wp=0x00000062 lp=0x20300001}) line 989 + 10 bytes
|
|
749 mswindows_drain_windows_queue() line 1345 + 9 bytes
|
|
750 emacs_mswindows_quit_p() line 3947
|
|
751 event_stream_quit_p() line 666
|
|
752 check_quit() line 686
|
|
753 check_what_happened() line 437
|
|
754 re_match_2_internal(re_pattern_buffer * 0x012d5a18, const unsigned char * 0x00000000, int 0, const unsigned char * 0x02235000, int 23486, int 14645, re_registers * 0x012d53d0 search_regs, int 23486) line 4717 + 14 bytes
|
|
755 re_search_2(re_pattern_buffer * 0x012d5a18, const char * 0x02235000, int 23486, const char * 0x0223b38e, int 0, int 14645, int 8841, re_registers * 0x012d53d0 search_regs, int 23486) line 4269 + 37 bytes
|
|
756 search_buffer(buffer * 0x022fde00, long 29077572, long 13789, long 23487, long 1, int 1, long 28377092, long 28377092, int 0) line 1224 + 89 bytes
|
|
757 search_command(long 29077572, long 46975, long 28377116, long 28377092, long 28377092, int 1, int 1, int 0) line 1054 + 151 bytes
|
|
758 Fre_search_forward(long 29077572, long 46975, long 28377116, long 28377092, long 28377092) line 2147 + 31 bytes
|
|
759 Ffuncall(int 4, long * 0x0082ceb0) line 3488 + 216 bytes
|
|
760 execute_optimized_program(const unsigned char * 0x02047810, int 13, long * 0x02080c10) line 744 + 16 bytes
|
|
761 funcall_compiled_function(long 34187208, int 3, long * 0x0082d1b8) line 516 + 53 bytes
|
|
762 Ffuncall(int 4, long * 0x0082d1b4) line 3523 + 17 bytes
|
|
763 execute_optimized_program(const unsigned char * 0x01e96a10, int 6, long * 0x020ae510) line 744 + 16 bytes
|
|
764 funcall_compiled_function(long 34186676, int 3, long * 0x0082d4a0) line 516 + 53 bytes
|
|
765 Ffuncall(int 4, long * 0x0082d49c) line 3523 + 17 bytes
|
|
766 execute_optimized_program(const unsigned char * 0x02156b50, int 4, long * 0x020c2db0) line 744 + 16 bytes
|
|
767 funcall_compiled_function(long 34186564, int 2, long * 0x0082d780) line 516 + 53 bytes
|
|
768 Ffuncall(int 3, long * 0x0082d77c) line 3523 + 17 bytes
|
|
769 execute_optimized_program(const unsigned char * 0x0082d964, int 3, long * 0x020c2d70) line 744 + 16 bytes
|
|
770 Fbyte_code(long 29405156, long 34352480, long 7) line 2392 + 38 bytes
|
|
771 Feval(long 34354440) line 3290 + 187 bytes
|
|
772 condition_case_1(long 34354572, long (long)* 0x01087232 Feval(long), long 34354440, long (long, long)* 0x01084764 run_condition_case_handlers(long, long), long 28377092) line 1692 + 7 bytes
|
|
773 condition_case_3(long 34354440, long 28377092, long 34354572) line 1779 + 27 bytes
|
|
774 execute_rare_opcode(long * 0x0082dc7c, const unsigned char * 0x01b090af, int 143) line 1269 + 19 bytes
|
|
775 execute_optimized_program(const unsigned char * 0x01b09090, int 6, long * 0x020ae590) line 654 + 17 bytes
|
|
776 funcall_compiled_function(long 34186620, int 0, long * 0x0082df68) line 516 + 53 bytes
|
|
777 Ffuncall(int 1, long * 0x0082df64) line 3523 + 17 bytes
|
|
778 execute_optimized_program(const unsigned char * 0x02195470, int 1, long * 0x020c2df0) line 744 + 16 bytes
|
|
779 funcall_compiled_function(long 34186508, int 0, long * 0x0082e23c) line 516 + 53 bytes
|
|
780 Ffuncall(int 1, long * 0x0082e238) line 3523 + 17 bytes
|
|
781 execute_optimized_program(const unsigned char * 0x01e5d410, int 6, long * 0x0207d410) line 744 + 16 bytes
|
|
782 funcall_compiled_function(long 34186312, int 1, long * 0x0082e524) line 516 + 53 bytes
|
|
783 Ffuncall(int 2, long * 0x0082e520) line 3523 + 17 bytes
|
|
784 execute_optimized_program(const unsigned char * 0x02108fb0, int 2, long * 0x020c2e30) line 744 + 16 bytes
|
|
785 funcall_compiled_function(long 34186340, int 0, long * 0x0082e7fc) line 516 + 53 bytes
|
|
786 Ffuncall(int 1, long * 0x0082e7f8) line 3523 + 17 bytes
|
|
787 execute_optimized_program(const unsigned char * 0x020fe150, int 2, long * 0x01e6f510) line 744 + 16 bytes
|
|
788 funcall_compiled_function(long 31008124, int 0, long * 0x0082ebd8) line 516 + 53 bytes
|
|
789 Ffuncall(int 1, long * 0x0082ebd4) line 3523 + 17 bytes
|
|
790 run_hook_with_args_in_buffer(buffer * 0x022fde00, int 1, long * 0x0082ebd4, int 0) line 3980 + 13 bytes
|
|
791 run_hook_with_args(int 1, long * 0x0082ebd4, int 0) line 3993 + 23 bytes
|
|
792 Frun_hooks(int 1, long * 0x0082ebd4) line 3847 + 19 bytes
|
|
793 Ffuncall(int 2, long * 0x0082ebd0) line 3509 + 14 bytes
|
|
794 execute_optimized_program(const unsigned char * 0x01ef2210, int 5, long * 0x01da8e10) line 744 + 16 bytes
|
|
795 funcall_compiled_function(long 31020440, int 2, long * 0x0082eeb8) line 516 + 53 bytes
|
|
796 Ffuncall(int 3, long * 0x0082eeb4) line 3523 + 17 bytes
|
|
797 execute_optimized_program(const unsigned char * 0x0082f09c, int 3, long * 0x01d89390) line 744 + 16 bytes
|
|
798 Fbyte_code(long 31102388, long 30970752, long 7) line 2392 + 38 bytes
|
|
799 Feval(long 31087568) line 3290 + 187 bytes
|
|
800 condition_case_1(long 30961240, long (long)* 0x01087232 Feval(long), long 31087568, long (long, long)* 0x01084764 run_condition_case_handlers(long, long), long 28510180) line 1692 + 7 bytes
|
|
801 condition_case_3(long 31087568, long 28510180, long 30961240) line 1779 + 27 bytes
|
|
802 execute_rare_opcode(long * 0x0082f450, const unsigned char * 0x01ef23ec, int 143) line 1269 + 19 bytes
|
|
803 execute_optimized_program(const unsigned char * 0x01ef2310, int 6, long * 0x01da8f10) line 654 + 17 bytes
|
|
804 funcall_compiled_function(long 31020412, int 1, long * 0x0082f740) line 516 + 53 bytes
|
|
805 Ffuncall(int 2, long * 0x0082f73c) line 3523 + 17 bytes
|
|
806 execute_optimized_program(const unsigned char * 0x020fe650, int 3, long * 0x01d8c490) line 744 + 16 bytes
|
|
807 funcall_compiled_function(long 31020020, int 2, long * 0x0082fa14) line 516 + 53 bytes
|
|
808 Ffuncall(int 3, long * 0x0082fa10) line 3523 + 17 bytes
|
|
809 Fcall_interactively(long 29685180, long 28377092, long 28377092) line 1008 + 22 bytes
|
|
810 Fcommand_execute(long 29685180, long 28377092, long 28377092) line 2929 + 17 bytes
|
|
811 execute_command_event(command_builder * 0x01be1900, long 36626492) line 4048 + 25 bytes
|
|
812 Fdispatch_event(long 36626492) line 4341 + 70 bytes
|
|
813 Fcommand_loop_1() line 582 + 9 bytes
|
|
814 command_loop_1(long 28377092) line 495
|
|
815 condition_case_1(long 28377188, long (long)* 0x01064fb9 command_loop_1(long), long 28377092, long (long, long)* 0x010649d0 cmd_error(long, long), long 28377092) line 1692 + 7 bytes
|
|
816 command_loop_3() line 256 + 35 bytes
|
|
817 command_loop_2(long 28377092) line 269
|
|
818 internal_catch(long 28457612, long (long)* 0x01064b20 command_loop_2(long), long 28377092, int * volatile 0x00000000) line 1317 + 7 bytes
|
|
819 initial_command_loop(long 28377092) line 305 + 25 bytes
|
|
820 STACK_TRACE_EYE_CATCHER(int 1, char * * 0x01b63ff0, char * * 0x01ca5300, int 0) line 2501
|
|
821 main(int 1, char * * 0x01b63ff0, char * * 0x01ca5300) line 2938
|
|
822 XEMACS! mainCRTStartup + 180 bytes
|
|
823 _start() line 171
|
|
824 KERNEL32! BaseProcessStart@4 + 115547 bytes
|
|
825
|
|
826 */
|
|
827
|
428
|
828 if (dont_check_for_quit)
|
|
829 return 0;
|
|
830
|
|
831 if (quit_check_signal_happened)
|
|
832 {
|
771
|
833 /* Since arbitrary Lisp code may be executed, GC might happen,
|
|
834 which would majorly fuck a lot of things, e.g. re_match()
|
|
835 [string gets relocated] and lots of other code that's not
|
|
836 prepared to handle GC in QUIT. */
|
|
837 int specdepth = begin_gc_forbidden ();
|
428
|
838 quit_check_signal_happened = 0;
|
|
839 event_stream_quit_p ();
|
771
|
840 unbind_to (specdepth);
|
428
|
841 return 1;
|
|
842 }
|
|
843 else
|
|
844 return 0;
|
|
845 }
|
|
846
|
|
847
|
|
848
|
|
849 void
|
|
850 init_poll_for_quit (void)
|
|
851 {
|
|
852 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
|
|
853 /* Check for C-g every 1/4 of a second.
|
|
854
|
|
855 #### This is just a guess. Some investigation will have to be
|
|
856 done to see what the best value is. The best value is the
|
|
857 smallest possible value that doesn't cause a significant amount
|
|
858 of running time to be spent in C-g checking. */
|
|
859 if (!poll_for_quit_id)
|
|
860 poll_for_quit_id =
|
|
861 event_stream_generate_wakeup (NORMAL_QUIT_CHECK_TIMEOUT_MSECS,
|
|
862 NORMAL_QUIT_CHECK_TIMEOUT_MSECS,
|
|
863 Qnil, Qnil, 1);
|
|
864 #endif /* not SIGIO and not DONT_POLL_FOR_QUIT */
|
|
865 }
|
|
866
|
593
|
867 #if 0 /* not used anywhere */
|
|
868
|
428
|
869 void
|
|
870 reset_poll_for_quit (void)
|
|
871 {
|
|
872 #if !defined (SIGIO) && !defined (DONT_POLL_FOR_QUIT)
|
|
873 if (poll_for_quit_id)
|
|
874 {
|
|
875 event_stream_disable_wakeup (poll_for_quit_id, 1);
|
|
876 poll_for_quit_id = 0;
|
|
877 }
|
|
878 #endif /* not SIGIO and not DONT_POLL_FOR_QUIT */
|
|
879 }
|
|
880
|
593
|
881 #endif /* 0 */
|
|
882
|
428
|
883 #if defined(HAVE_UNIX_PROCESSES) && !defined(SIGCHLD)
|
|
884
|
|
885 static void
|
|
886 init_poll_for_sigchld (void)
|
|
887 {
|
|
888 /* Check for terminated processes every 1/4 of a second.
|
|
889
|
|
890 #### This is just a guess. Some investigation will have to be
|
|
891 done to see what the best value is. The best value is the
|
|
892 smallest possible value that doesn't cause a significant amount
|
|
893 of running time to be spent in process-termination checking.
|
|
894 */
|
|
895 poll_for_sigchld_id =
|
|
896 event_stream_generate_wakeup (NORMAL_SIGCHLD_CHECK_TIMEOUT_MSECS,
|
|
897 NORMAL_SIGCHLD_CHECK_TIMEOUT_MSECS,
|
|
898 Qnil, Qnil, 1);
|
|
899 }
|
|
900
|
|
901 #endif /* not SIGCHLD */
|
|
902
|
|
903
|
|
904 /************************************************************************/
|
|
905 /* initialization */
|
|
906 /************************************************************************/
|
|
907
|
|
908 /* If we've been nohup'ed, keep it that way.
|
|
909 This allows `nohup xemacs &' to work.
|
|
910 More generally, if a normally fatal signal has been redirected
|
|
911 to SIG_IGN by our invocation environment, trust the environment.
|
|
912 This keeps xemacs from being killed by a SIGQUIT intended for a
|
|
913 different process after having been backgrounded under a
|
|
914 non-job-control shell! */
|
|
915 static void
|
|
916 handle_signal_if_fatal (int signo)
|
|
917 {
|
613
|
918 if (EMACS_SIGNAL (signo, fatal_error_signal) == SIG_IGN)
|
|
919 EMACS_SIGNAL (signo, SIG_IGN);
|
428
|
920 }
|
|
921
|
|
922 void
|
|
923 init_signals_very_early (void)
|
|
924 {
|
|
925 /* Catch all signals that would kill us.
|
|
926 Don't catch these signals in batch mode if not initialized.
|
|
927 On some machines, this sets static data that would make
|
|
928 signal fail to work right when the dumped Emacs is run. */
|
|
929 if (noninteractive && !initialized)
|
|
930 return;
|
|
931
|
|
932 handle_signal_if_fatal (SIGILL); /* ANSI */
|
|
933 handle_signal_if_fatal (SIGABRT); /* ANSI */
|
|
934 handle_signal_if_fatal (SIGFPE); /* ANSI */
|
|
935 handle_signal_if_fatal (SIGSEGV); /* ANSI */
|
|
936 handle_signal_if_fatal (SIGTERM); /* ANSI */
|
|
937
|
|
938
|
|
939 #ifdef SIGHUP
|
|
940 handle_signal_if_fatal (SIGHUP); /* POSIX */
|
|
941 #endif
|
|
942 #ifdef SIGQUIT
|
|
943 handle_signal_if_fatal (SIGQUIT); /* POSIX */
|
|
944 #endif
|
|
945 #ifdef SIGTRAP
|
|
946 handle_signal_if_fatal (SIGTRAP); /* POSIX */
|
|
947 #endif
|
|
948 #ifdef SIGUSR1
|
|
949 handle_signal_if_fatal (SIGUSR1); /* POSIX */
|
|
950 #endif
|
|
951 #ifdef SIGUSR2
|
|
952 handle_signal_if_fatal (SIGUSR2); /* POSIX */
|
|
953 #endif
|
|
954 #ifdef SIGPIPE
|
|
955 handle_signal_if_fatal (SIGPIPE); /* POSIX */
|
|
956 #endif
|
|
957 #ifdef SIGALRM
|
|
958 /* This will get reset later, once we're
|
|
959 capable of handling it properly. */
|
|
960 handle_signal_if_fatal (SIGALRM); /* POSIX */
|
|
961 #endif
|
|
962
|
|
963
|
|
964 #ifdef SIGBUS
|
|
965 handle_signal_if_fatal (SIGBUS); /* XPG5 */
|
|
966 #endif
|
|
967 #ifdef SIGSYS
|
|
968 handle_signal_if_fatal (SIGSYS); /* XPG5 */
|
|
969 #endif
|
|
970 #ifdef SIGXCPU
|
|
971 handle_signal_if_fatal (SIGXCPU); /* XPG5 */
|
|
972 #endif
|
|
973 #ifdef SIGXFSZ
|
|
974 handle_signal_if_fatal (SIGXFSZ); /* XPG5 */
|
|
975 #endif
|
|
976 #ifdef SIGVTALRM
|
|
977 handle_signal_if_fatal (SIGVTALRM); /* XPG5 */
|
|
978 #endif
|
|
979 #ifdef SIGPROF
|
|
980 /* Messes up the REAL profiler */
|
|
981 /* handle_signal_if_fatal (SIGPROF); */ /* XPG5 */
|
|
982 #endif
|
|
983
|
|
984
|
|
985 #ifdef SIGHWE
|
|
986 handle_signal_if_fatal (SIGHWE);
|
|
987 #endif
|
|
988 #ifdef SIGPRE
|
|
989 handle_signal_if_fatal (SIGPRE);
|
|
990 #endif
|
|
991 #ifdef SIGORE
|
|
992 handle_signal_if_fatal (SIGORE);
|
|
993 #endif
|
|
994 #ifdef SIGUME
|
|
995 handle_signal_if_fatal (SIGUME);
|
|
996 #endif
|
|
997 #ifdef SIGDLK
|
|
998 handle_signal_if_fatal (SIGDLK);
|
|
999 #endif
|
|
1000 #ifdef SIGCPULIM
|
|
1001 handle_signal_if_fatal (SIGCPULIM);
|
|
1002 #endif
|
|
1003 #ifdef SIGIOT
|
|
1004 handle_signal_if_fatal (SIGIOT);
|
|
1005 #endif
|
|
1006 #ifdef SIGEMT
|
|
1007 handle_signal_if_fatal (SIGEMT);
|
|
1008 #endif
|
|
1009 #ifdef SIGLOST
|
|
1010 handle_signal_if_fatal (SIGLOST);
|
|
1011 #endif
|
|
1012 #ifdef SIGSTKFLT /* coprocessor stack fault under Linux */
|
|
1013 handle_signal_if_fatal (SIGSTKFLT);
|
|
1014 #endif
|
|
1015 #ifdef SIGUNUSED /* exists under Linux, and will kill process! */
|
|
1016 handle_signal_if_fatal (SIGUNUSED);
|
|
1017 #endif
|
|
1018
|
|
1019 #ifdef AIX
|
|
1020 /* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
|
|
1021 #ifndef _I386
|
|
1022 handle_signal_if_fatal (SIGIOINT);
|
|
1023 #endif
|
|
1024 handle_signal_if_fatal (SIGGRANT);
|
|
1025 handle_signal_if_fatal (SIGRETRACT);
|
|
1026 handle_signal_if_fatal (SIGSOUND);
|
|
1027 handle_signal_if_fatal (SIGMSG);
|
|
1028 #endif /* AIX */
|
|
1029
|
|
1030 #ifdef SIGDANGER
|
|
1031 /* This just means available memory is getting low. */
|
613
|
1032 EMACS_SIGNAL (SIGDANGER, memory_warning_signal);
|
428
|
1033 #endif
|
|
1034 }
|
|
1035
|
|
1036 void
|
|
1037 syms_of_signal (void)
|
|
1038 {
|
|
1039 DEFSUBR (Fwaiting_for_user_input_p);
|
|
1040 }
|
|
1041
|
|
1042 void
|
|
1043 init_interrupts_late (void)
|
|
1044 {
|
|
1045 if (!noninteractive)
|
|
1046 {
|
613
|
1047 EMACS_SIGNAL (SIGINT, interrupt_signal);
|
428
|
1048 #ifdef HAVE_TERMIO
|
|
1049 /* On systems with TERMIO, C-g is set up for both SIGINT and SIGQUIT
|
|
1050 and we can't tell which one it will give us. */
|
613
|
1051 EMACS_SIGNAL (SIGQUIT, interrupt_signal);
|
428
|
1052 #endif /* HAVE_TERMIO */
|
|
1053 init_async_timeouts ();
|
|
1054 #ifdef SIGIO
|
613
|
1055 EMACS_SIGNAL (SIGIO, input_available_signal);
|
428
|
1056 # ifdef SIGPOLL /* XPG5 */
|
|
1057 /* Some systems (e.g. Motorola SVR4) losingly have different
|
|
1058 values for SIGIO and SIGPOLL, and send SIGPOLL instead of
|
|
1059 SIGIO. On those same systems, an uncaught SIGPOLL kills the
|
|
1060 process. */
|
613
|
1061 EMACS_SIGNAL (SIGPOLL, input_available_signal);
|
428
|
1062 # endif
|
|
1063 #elif !defined (DONT_POLL_FOR_QUIT)
|
|
1064 init_poll_for_quit ();
|
|
1065 #endif
|
|
1066 }
|
|
1067
|
|
1068 #if defined(HAVE_UNIX_PROCESSES) && !defined(SIGCHLD)
|
|
1069 init_poll_for_sigchld ();
|
|
1070 #endif
|
|
1071
|
|
1072 EMACS_UNBLOCK_ALL_SIGNALS ();
|
|
1073
|
|
1074 interrupts_initted = 1;
|
|
1075 }
|
|
1076
|