summaryrefslogtreecommitdiffstats
path: root/cpukit/posix
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-12-04 15:30:08 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-12-04 15:30:08 +0000
commit654e1f32afaad70d2f53207398d7a4b68b58a366 (patch)
tree64f3b7d75da65972103d786d9198e4df38b91ffa /cpukit/posix
parent2009-12-04 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-654e1f32afaad70d2f53207398d7a4b68b58a366.tar.bz2
Reflect having split out posix/include/rtems/posix/sigset.h.
Diffstat (limited to 'cpukit/posix')
-rw-r--r--cpukit/posix/include/rtems/posix/psignal.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/cpukit/posix/include/rtems/posix/psignal.h b/cpukit/posix/include/rtems/posix/psignal.h
index 608a8519e9..87b629ef52 100644
--- a/cpukit/posix/include/rtems/posix/psignal.h
+++ b/cpukit/posix/include/rtems/posix/psignal.h
@@ -17,23 +17,7 @@
#define _RTEMS_POSIX_PSIGNAL_H
#include <rtems/posix/pthread.h>
-
-/*
- * Currently 32 signals numbered 1-32 are defined
- */
-
-#define SIGNAL_EMPTY_MASK 0x00000000
-#define SIGNAL_ALL_MASK 0xffffffffL
-
-static inline sigset_t signo_to_mask(
- uint32_t sig
-)
-{
- return 1u << (sig - 1);
-}
-
-#define is_valid_signo( _sig ) \
- ((_sig) >= 1 && (_sig) <= 32 )
+#include <rtems/posix/sigset.h>
#define _States_Is_interruptible_signal( _states ) \
( ((_states) & \