summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/psignal.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-27 13:46:45 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-04-27 13:46:45 +0000
commit20fff72b41cdcc871718a30060d57ff66caf6013 (patch)
tree7a0cb66b980847c4e3404344619d457e438d6d4b /c/src/exec/posix/src/psignal.c
parentChanged __POSIX_SIGNALS_h to __RTEMS_POSIX_SIGNALS_h to avoid conflict with (diff)
downloadrtems-20fff72b41cdcc871718a30060d57ff66caf6013.tar.bz2
Moved POSIX_signals_Siginfo_node structure definition to headers/psignal.h
so confdefs.h could see it.
Diffstat (limited to 'c/src/exec/posix/src/psignal.c')
-rw-r--r--c/src/exec/posix/src/psignal.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/c/src/exec/posix/src/psignal.c b/c/src/exec/posix/src/psignal.c
index 289c9f02d5..4037209009 100644
--- a/c/src/exec/posix/src/psignal.c
+++ b/c/src/exec/posix/src/psignal.c
@@ -14,6 +14,7 @@
#include <rtems/score/wkspace.h>
#include <rtems/posix/seterr.h>
#include <rtems/posix/threadsup.h>
+#include <rtems/posix/psignal.h>
#include <rtems/posix/pthread.h>
#include <rtems/posix/time.h>
@@ -94,11 +95,6 @@ Watchdog_Control _POSIX_signals_Alarm_timer;
Thread_queue_Control _POSIX_signals_Wait_queue;
-typedef struct {
- Chain_Node Node;
- siginfo_t Info;
-} POSIX_signals_Siginfo_node;
-
Chain_Control _POSIX_signals_Inactive_siginfo;
Chain_Control _POSIX_signals_Siginfo[ SIG_ARRAY_MAX ];