comparison src/syssignal.h @ 78:c7528f8e288d r20-0b34

Import from CVS: tag r20-0b34
author cvs
date Mon, 13 Aug 2007 09:05:42 +0200
parents 54cc21c15cbb
children 4be1180a9e89
comparison
equal deleted inserted replaced
77:6cb4f478e7bc 78:c7528f8e288d
86 just signal() for the standard signal-setting operation. 86 just signal() for the standard signal-setting operation.
87 Perhaps we should change this to EMACS_SIGNAL(), but that runs 87 Perhaps we should change this to EMACS_SIGNAL(), but that runs
88 the risk of someone forgetting this convention and calling 88 the risk of someone forgetting this convention and calling
89 signal() directly. */ 89 signal() directly. */
90 90
91 #ifndef NeXT
91 typedef SIGTYPE (*signal_handler_t) (int); 92 typedef SIGTYPE (*signal_handler_t) (int);
93 #endif
92 94
93 #if defined (HAVE_SIGPROCMASK) 95 #if defined (HAVE_SIGPROCMASK)
94 96
95 /* The POSIX way (sigaction, sigprocmask, sigpending, sigsuspend) */ 97 /* The POSIX way (sigaction, sigprocmask, sigpending, sigsuspend) */
96 98