summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/sunos-4.1.3/__signal.h
diff options
context:
space:
mode:
Diffstat (limited to 'mit-pthreads/machdep/sunos-4.1.3/__signal.h')
-rwxr-xr-xmit-pthreads/machdep/sunos-4.1.3/__signal.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/mit-pthreads/machdep/sunos-4.1.3/__signal.h b/mit-pthreads/machdep/sunos-4.1.3/__signal.h
deleted file mode 100755
index f8b4fb8b6de..00000000000
--- a/mit-pthreads/machdep/sunos-4.1.3/__signal.h
+++ /dev/null
@@ -1,11 +0,0 @@
-
-#include <sys/signal.h>
-#include <sys/stdtypes.h>
-
-typedef int sig_atomic_t;
-
-#define __SIGFILLSET 0xffffffff
-#define __SIGEMPTYSET 0
-#define __SIGADDSET(s,n) ((*s) |= (1 << ((n) - 1)))
-#define __SIGDELSET(s,n) ((*s) &= ~(1 << ((n) - 1)))
-#define __SIGISMEMBER(s,n) ((*s) & (1 << ((n) - 1)))