9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 22433ef0cf2fddc3e88733e6bb1e1d4693f7aa92
parent 5a71299399c05c4be15faaaede8e9f59b11d84bc
Author: Roberto Vargas <roberto.vargas@arm.com>
Date:   Fri,  2 Nov 2018 09:40:59 +0000

[libc] Update sys/signal.h for linux

Diffstat:
Minclude/bits/linux/sys/signal.h | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/include/bits/linux/sys/signal.h b/include/bits/linux/sys/signal.h @@ -4,9 +4,24 @@ typedef int sig_atomic_t; #define SIG_DFL ((void (*)(int)) 0) #define SIG_IGN ((void (*)(int)) 1) +#define SIGHUP 1 #define SIGINT 2 +#define SIGQUIT 3 #define SIGILL 4 #define SIGABRT 6 #define SIGFPE 8 +#define SIGKILL 9 +#define SIGUSR1 10 #define SIGSEGV 11 +#define SIGUSR2 12 +#define SIGPIPE 13 +#define SIGALRM 14 #define SIGTERM 15 +#define SIGCHLD 17 +#define SIGCONT 18 +#define SIGSTOP 19 +#define SIGSSTP 20 +#define SIGTTIN 21 +#define SIGTTOU 22 + +#define __NR_SIGNALS 23