diff options
author | David Barksdale <amatus.amongus@gmail.com> | 2013-06-24 20:10:41 -0500 |
---|---|---|
committer | David Barksdale <amatus.amongus@gmail.com> | 2013-06-24 22:09:54 -0500 |
commit | cec818774cdfe21ffc515316aea9034be4cbcbd6 (patch) | |
tree | 8ee2428e38c25f22cd822426e303dd91e4eed449 /system/include | |
parent | 15fb8c884e14f237050612d1e63ce259b23a98f6 (diff) |
Define SA_RESTART.
Diffstat (limited to 'system/include')
-rw-r--r-- | system/include/libc/sys/signal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/include/libc/sys/signal.h b/system/include/libc/sys/signal.h index 910ccf78..49a94d80 100644 --- a/system/include/libc/sys/signal.h +++ b/system/include/libc/sys/signal.h @@ -73,6 +73,7 @@ typedef struct { /* three arguments instead of one. */ #define SA_NODEFER 4 /* XXX Emscripten */ #define SA_RESETHAND 8 /* XXX Emscripten */ +#define SA_RESTART 16 /* XXX Emscripten */ /* struct sigaction notes from POSIX: * |