]> git.tdb.fi Git - libs/core.git/blob - source/win32signum.h
1635ea9f672ca3d1208c4ff6ae173f871b9778eb
[libs/core.git] / source / win32signum.h
1 /*
2 This file is part of libmspframework
3 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
4 Distributed under the LGPL
5 */
6 #ifndef MSP_FRAMEWORK_WIN32SIGNUM_H_
7 #define MSP_FRAMEWORK_WIN32SIGNUM_H_
8
9 /* Fake signal functions.  */
10 #ifndef SIG_ERR
11 #define SIG_ERR ((__sighandler_t) -1)           /* Error return.  */
12 #endif
13 #ifndef SIG_DFL
14 #define SIG_DFL ((__sighandler_t) 0)            /* Default action.  */
15 #endif
16 #ifndef SIG_IGN
17 #define SIG_IGN ((__sighandler_t) 1)            /* Ignore signal.  */
18 #endif
19
20 #if defined __USE_UNIX98 && !defined SIG_HOLD
21 # define SIG_HOLD       ((__sighandler_t) 2)    /* Add signal to hold mask.  */
22 #endif
23
24 /* Signals.  */
25 #define SIGHUP          1       /* Hangup (POSIX).  */
26 #define SIGINT          2       /* Interrupt (ANSI).  */
27 #define SIGQUIT         3       /* Quit (POSIX).  */
28 #define SIGILL          4       /* Illegal instruction (ANSI).  */
29 #define SIGTRAP         5       /* Trace trap (POSIX).  */
30 #ifndef SIGABRT
31 #define SIGABRT         6       /* Abort (ANSI).  */
32 #endif
33 #define SIGIOT          6       /* IOT trap (4.2 BSD).  */
34 #define SIGBUS          7       /* BUS error (4.2 BSD).  */
35 #define SIGFPE          8       /* Floating-point exception (ANSI).  */
36 #define SIGKILL         9       /* Kill, unblockable (POSIX).  */
37 #define SIGUSR1         10      /* User-defined signal 1 (POSIX).  */
38 #define SIGSEGV         11      /* Segmentation violation (ANSI).  */
39 #define SIGUSR2         12      /* User-defined signal 2 (POSIX).  */
40 #define SIGPIPE         13      /* Broken pipe (POSIX).  */
41 #define SIGALRM         14      /* Alarm clock (POSIX).  */
42 #define SIGTERM         15      /* Termination (ANSI).  */
43 #define SIGSTKFLT       16      /* Stack fault.  */
44 #define SIGCLD          SIGCHLD /* Same as SIGCHLD (System V).  */
45 #define SIGCHLD         17      /* Child status has changed (POSIX).  */
46 #define SIGCONT         18      /* Continue (POSIX).  */
47 #define SIGSTOP         19      /* Stop, unblockable (POSIX).  */
48 #define SIGTSTP         20      /* Keyboard stop (POSIX).  */
49 #define SIGTTIN         21      /* Background read from tty (POSIX).  */
50 #define SIGTTOU         22      /* Background write to tty (POSIX).  */
51 #define SIGURG          23      /* Urgent condition on socket (4.2 BSD).  */
52 #define SIGXCPU         24      /* CPU limit exceeded (4.2 BSD).  */
53 #define SIGXFSZ         25      /* File size limit exceeded (4.2 BSD).  */
54 #define SIGVTALRM       26      /* Virtual alarm clock (4.2 BSD).  */
55 #define SIGPROF         27      /* Profiling alarm clock (4.2 BSD).  */
56 #define SIGWINCH        28      /* Window size change (4.3 BSD, Sun).  */
57 #define SIGPOLL         SIGIO   /* Pollable event occurred (System V).  */
58 #define SIGIO           29      /* I/O now possible (4.2 BSD).  */
59 #define SIGPWR          30      /* Power failure restart (System V).  */
60 #define SIGSYS          31      /* Bad system call.  */
61 #define SIGUNUSED       31
62
63 #define _NSIG           65      /* Biggest signal number + 1
64                                    (including real-time signals).  */
65
66 #define SIGRTMIN        (__libc_current_sigrtmin ())
67 #define SIGRTMAX        (__libc_current_sigrtmax ())
68
69 /* These are the hard limits of the kernel.  These values should not be
70    used directly at user level.  */
71 #define __SIGRTMIN      32
72 #define __SIGRTMAX      (_NSIG - 1)
73
74 #endif