Mercurial > hg > xemacs-beta
comparison src/syssignal.h @ 12:bcdc7deadc19 r19-15b7
Import from CVS: tag r19-15b7
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:48:16 +0200 |
parents | 4b173ad71786 |
children | 131b0175ea99 |
comparison
equal
deleted
inserted
replaced
11:91ffe8bd52e4 | 12:bcdc7deadc19 |
---|---|
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 |