* lisp/dired-aux.el (dired-do-chmod): Use `eq' to detect empty input.
[emacs.git] / src / syssignal.h
blob5e733dd812da6d5902e0c4a2fba17599731ab268
1 /* syssignal.h - System-dependent definitions for signals.
3 Copyright (C) 1993, 1999, 2001-2012 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 3 of the License, or
10 (at your option) any later version.
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. If not, see <http://www.gnu.org/licenses/>. */
20 #include <signal.h>
22 extern void init_signals (void);
24 #ifdef HAVE_PTHREAD
25 #include <pthread.h>
26 /* If defined, asynchronous signals delivered to a non-main thread are
27 forwarded to the main thread. */
28 #define FORWARD_SIGNAL_TO_MAIN_THREAD
29 #endif
31 extern sigset_t empty_mask;
33 typedef void (*signal_handler_t) (int);
35 extern void emacs_sigaction_init (struct sigaction *, signal_handler_t);
37 #if NSIG < NSIG_MINIMUM
38 # undef NSIG
39 # define NSIG NSIG_MINIMUM
40 #endif
42 /* On bsd, [man says] kill does not accept a negative number to kill a pgrp.
43 Must do that using the killpg call. */
44 #ifdef BSD_SYSTEM
45 #define EMACS_KILLPG(gid, signo) (killpg ( (gid), (signo)))
46 #else
47 #ifdef WINDOWSNT
48 #define EMACS_KILLPG(gid, signo) (kill (gid, signo))
49 #else
50 #define EMACS_KILLPG(gid, signo) (kill (-(gid), (signo)))
51 #endif
52 #endif
54 /* Define SIGCHLD as an alias for SIGCLD. There are many conditionals
55 testing SIGCHLD. */
56 #ifdef SIGCLD
57 #ifndef SIGCHLD
58 #define SIGCHLD SIGCLD
59 #endif /* SIGCHLD */
60 #endif /* ! defined (SIGCLD) */
62 #ifndef HAVE_STRSIGNAL
63 /* strsignal is in sysdep.c */
64 char *strsignal (int);
65 #endif
67 #ifdef FORWARD_SIGNAL_TO_MAIN_THREAD
68 extern pthread_t main_thread;
69 #endif
71 void handle_on_main_thread (int, signal_handler_t);