summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/psignal.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/rtems/posix/psignal.h')
-rw-r--r--cpukit/posix/include/rtems/posix/psignal.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/cpukit/posix/include/rtems/posix/psignal.h b/cpukit/posix/include/rtems/posix/psignal.h
deleted file mode 100644
index ed98442e32..0000000000
--- a/cpukit/posix/include/rtems/posix/psignal.h
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * @file
- *
- * @brief Internal Information about POSIX Signals
- *
- * This include file defines internal information about POSIX signals.
- */
-
-/*
- * COPYRIGHT (c) 1989-2011.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_POSIX_PSIGNAL_H
-#define _RTEMS_POSIX_PSIGNAL_H
-
-#include <sys/signal.h>
-
-#include <rtems/score/chain.h>
-
-/*
- * POSIX internal siginfo structure
- */
-
-typedef struct {
- Chain_Node Node;
- siginfo_t Info;
-} POSIX_signals_Siginfo_node;
-
-#endif
-/* end of file */