summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/threadsup.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2006-01-18 14:27:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2006-01-18 14:27:18 +0000
commit43b3e74ece7dcc38782a78ab191e0000d0dce6b7 (patch)
tree2f00a675c495c6ce3d358d286f26ee13cb0a661e /cpukit/posix/include/rtems/posix/threadsup.h
parentRegenerate (diff)
downloadrtems-43b3e74ece7dcc38782a78ab191e0000d0dce6b7.tar.bz2
Remove.
Diffstat (limited to '')
-rw-r--r--cpukit/posix/include/rtems/posix/threadsup.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h
deleted file mode 100644
index 4e3bc4c085..0000000000
--- a/cpukit/posix/include/rtems/posix/threadsup.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/**
- * @file rtems/posix/threadsup.h
- */
-
-/* threadsup.h
- *
- * $Id$
- */
-
-#ifndef _RTEMS_POSIX_THREADSUP_H
-#define _RTEMS_POSIX_THREADSUP_H
-
-#include <sys/signal.h>
-#include <rtems/score/coresem.h>
-#include <rtems/score/tqdata.h>
-
-typedef struct {
- pthread_attr_t Attributes;
- int detachstate;
- Thread_queue_Control Join_List;
- int schedpolicy;
- struct sched_param schedparam;
- int ss_high_priority;
- Watchdog_Control Sporadic_timer;
-
- sigset_t signals_blocked;
- sigset_t signals_pending;
-
-#if 0
- /*
- * POSIX Interrupts
- */
- uint32_t interrupts_installed;
- CORE_semaphore_Control Interrupt_Semaphore;
-#endif
-
- /*
- * POSIX Cancelability
- */
- int cancelability_state;
- int cancelability_type;
- int cancelation_requested;
- Chain_Control Cancellation_Handlers;
-
-} POSIX_API_Control;
-
-#endif
-/* end of include file */