summaryrefslogtreecommitdiff
path: root/src/signal/struct_sigevent.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-20 12:00:12 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-20 12:00:12 -0500
commit52b8c93b7180eac72721d59315aae2b592e7b3a1 (patch)
treed304c2e253c56ca39df04e5d346309f08f67c445 /src/signal/struct_sigevent.c
parent49836ed4fa13e431fdbb52e418499853df8693c6 (diff)
add symbols from POSIX.1b-1993
Diffstat (limited to 'src/signal/struct_sigevent.c')
-rw-r--r--src/signal/struct_sigevent.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/signal/struct_sigevent.c b/src/signal/struct_sigevent.c
new file mode 100644
index 00000000..ac0713f9
--- /dev/null
+++ b/src/signal/struct_sigevent.c
@@ -0,0 +1,13 @@
+#include <signal.h>
+
+struct sigevent {
+ int sigev_notify;
+ int sigev_signo;
+ union sigval sigev_value;
+ void (*sigev_notify_function)(union sigval);
+ pthread_attr_t *siegev_notify_attributes;
+};
+
+/*
+POSIX(199309)
+*/