2005-05-13 19:44:28 +02:00
|
|
|
/*
|
|
|
|
* Signal definitions
|
|
|
|
*
|
|
|
|
* Copyright 2005 Juan Lang
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-05-13 19:44:28 +02:00
|
|
|
*/
|
|
|
|
#ifndef _WINE_SIGNAL_H
|
|
|
|
#define _WINE_SIGNAL_H
|
2008-12-11 22:37:34 +01:00
|
|
|
|
|
|
|
#include <crtdefs.h>
|
2005-05-13 19:44:28 +02:00
|
|
|
|
|
|
|
#define SIGINT 2
|
|
|
|
#define SIGILL 4
|
|
|
|
#define SIGFPE 8
|
|
|
|
#define SIGSEGV 11
|
|
|
|
#define SIGTERM 15
|
|
|
|
#define SIGBREAK 21
|
|
|
|
#define SIGABRT 22
|
|
|
|
|
|
|
|
#define NSIG (SIGABRT + 1)
|
|
|
|
|
2008-06-11 23:08:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-12-17 14:45:18 +01:00
|
|
|
typedef void (__cdecl *__sighandler_t)(int);
|
2005-05-13 19:44:28 +02:00
|
|
|
|
|
|
|
#define SIG_DFL ((__sighandler_t)0)
|
|
|
|
#define SIG_IGN ((__sighandler_t)1)
|
|
|
|
#define SIG_ERR ((__sighandler_t)-1)
|
|
|
|
|
2013-03-05 11:05:42 +01:00
|
|
|
void** __cdecl __pxcptinfoptrs(void);
|
2008-12-17 14:45:18 +01:00
|
|
|
__sighandler_t __cdecl signal(int sig, __sighandler_t func);
|
|
|
|
int __cdecl raise(int sig);
|
2005-05-13 19:44:28 +02:00
|
|
|
|
2008-06-11 23:08:19 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-05-13 19:44:28 +02:00
|
|
|
#endif /* _WINE_SIGNAL_H */
|