X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/87067c7f16425837971f5c1b5fd0fc5338757377..084eac3d5fa7deeab2296cf20653f4f7b3f75cd0:/lunaix-os/includes/usr/lunaix/signal_defs.h diff --git a/lunaix-os/includes/usr/lunaix/signal_defs.h b/lunaix-os/includes/usr/lunaix/signal_defs.h index d56a443..7c8148a 100644 --- a/lunaix-os/includes/usr/lunaix/signal_defs.h +++ b/lunaix-os/includes/usr/lunaix/signal_defs.h @@ -5,18 +5,21 @@ #define SIGCHLD 2 #define SIGCLD SIGCHLD -#define SIGSTOP 3 -#define SIGCONT 4 +#define SIGINT 3 +#define SIGSTOP 4 +#define SIGCONT 5 -#define SIGINT 5 #define SIGSEGV 6 #define SIGKILL 7 #define SIGTERM 8 +#define SIGILL 9 +#define SIGSYS 10 #define SIG_BLOCK 1 #define SIG_UNBLOCK 2 #define SIG_SETMASK 3 +typedef unsigned char signum_t; typedef unsigned int sigset_t; typedef void (*sighandler_t)(int);