diff options
author | Szabolcs Nagy <nsz@port70.net> | 2021-03-07 22:20:54 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2022-03-08 17:19:48 -0500 |
commit | 993cccce13ba3ae0432cb06eacd2e7f55a090952 (patch) | |
tree | dd836394ef0190f2857596c47e3c609eb2a72af5 | |
parent | 3dcbd896907d9d474da811b7c6b769342abaf651 (diff) | |
download | musl-993cccce13ba3ae0432cb06eacd2e7f55a090952.tar.gz musl-993cccce13ba3ae0432cb06eacd2e7f55a090952.tar.bz2 musl-993cccce13ba3ae0432cb06eacd2e7f55a090952.tar.xz musl-993cccce13ba3ae0432cb06eacd2e7f55a090952.zip |
signal.h: add SYS_USER_DISPATCH si_code value from linux v5.11
see
linux commit 1d7637d89cfce54a4f4a41c2325288c2f47470e8
signal: Expose SYS_USER_DISPATCH si_code type
-rw-r--r-- | include/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/signal.h b/include/signal.h index 4dd46142..af940ccb 100644 --- a/include/signal.h +++ b/include/signal.h @@ -263,6 +263,7 @@ void (*sigset(int, void (*)(int)))(int); typedef void (*sig_t)(int); #define SYS_SECCOMP 1 +#define SYS_USER_DISPATCH 2 #endif #ifdef _GNU_SOURCE |