Displaying 1 result from an estimated 1 matches for "e988806".
Did you mean:
988806
2011 Aug 16
2
[PATCH] test: Add signal nodefer
...tjmptest.shared-y := setjmptest.o
sigint.shared-y := sigint.o
+sig-nodefer.shared-y := sig-nodefer.o
socket.shared-y := socket.o
stat.shared-y := stat.o
statfs.shared-y := statfs.o
diff --git a/usr/klibc/tests/sig-nodefer.c b/usr/klibc/tests/sig-nodefer.c
new file mode 100644
index 0000000..e988806
--- /dev/null
+++ b/usr/klibc/tests/sig-nodefer.c
@@ -0,0 +1,55 @@
+/*
+ * Expected output of ./sig-defer:
+ * SIGUSR2: blocked
+ * SIGTERM: blocked
+ */
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include &...