diff options
author | Anton Kling <anton@kling.gg> | 2024-03-26 11:40:39 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-03-26 11:40:39 +0100 |
commit | 297231bb3602d868d3891d357026c53f9fcc2402 (patch) | |
tree | 6c4f21db84912750f6f464b26bf1e4503d1fe479 /userland/libc/include/signal.h | |
parent | 3deb2df8e62a5f0a5535ee734a5aa13b0959f53f (diff) |
Increase support for signals
Diffstat (limited to 'userland/libc/include/signal.h')
-rw-r--r-- | userland/libc/include/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/userland/libc/include/signal.h b/userland/libc/include/signal.h index 621710b..2be081c 100644 --- a/userland/libc/include/signal.h +++ b/userland/libc/include/signal.h @@ -12,6 +12,7 @@ #define SIGBUS 8 #define SIGKILL 9 #define SIGFPE 10 +#define SIGTERM 15 typedef int pid_t; typedef int sigset_t; |