comparison src/syssignal.h @ 440:8de8e3f6228a r21-2-28

Import from CVS: tag r21-2-28
author cvs
date Mon, 13 Aug 2007 11:33:38 +0200
parents 3ecd8885ac67
children abe6d1db359e
comparison
equal deleted inserted replaced
439:357dd071b03c 440:8de8e3f6228a
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */ 19 Boston, MA 02111-1307, USA. */
20 20
21 /* Synched up with: FSF 19.30. */ 21 /* Synched up with: FSF 19.30. */
22 22
23 #ifndef _XEMACS_SYSSIGNAL_H_ 23 #ifndef INCLUDED_syssignal_h_
24 #define _XEMACS_SYSSIGNAL_H_ 24 #define INCLUDED_syssignal_h_
25 25
26 /* In the old world, one could not #include <signal.h> here. The party line 26 /* In the old world, one could not #include <signal.h> here. The party line
27 was that that header should always be #included before <config.h>, because 27 was that that header should always be #included before <config.h>, because
28 some configuration files (like s/hpux.h) indicate that SIGIO doesn't work 28 some configuration files (like s/hpux.h) indicate that SIGIO doesn't work
29 by #undef-ing SIGIO, and if this file #includes <signal.h>, then that will 29 by #undef-ing SIGIO, and if this file #includes <signal.h>, then that will
232 232
233 #ifdef SIGDANGER 233 #ifdef SIGDANGER
234 SIGTYPE memory_warning_signal (int sig); 234 SIGTYPE memory_warning_signal (int sig);
235 #endif 235 #endif
236 236
237 #ifdef _WIN32 237 #ifdef WINDOWSNT
238 /* Prototypes for signal functions, see nt.c */ 238 /* Prototypes for signal functions, see nt.c */
239 typedef void (__cdecl *msw_sighandler) (int); 239 typedef void (__cdecl *msw_sighandler) (int);
240 msw_sighandler msw_sigset (int sig, msw_sighandler handler); 240 msw_sighandler msw_sigset (int sig, msw_sighandler handler);
241 int msw_sighold (int nsig); 241 int msw_sighold (int nsig);
242 int msw_sigrelse (int nsig); 242 int msw_sigrelse (int nsig);
243 int msw_sigpause (int nsig); 243 int msw_sigpause (int nsig);
244 int msw_raise (int nsig); 244 int msw_raise (int nsig);
245 #endif /* _WIN32 */ 245 #endif /* _WIN32 */
246 246
247 #endif /* _XEMACS_SYSSIGNAL_H_ */ 247 #endif /* INCLUDED_syssignal_h_ */