From 9aef35b7a79cadb6a4429ea03a565c4df4dc0606 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 18 Jan 2006 14:41:05 +0000 Subject: Resurrect accidentially deleted file. --- cpukit/ChangeLog | 1 - cpukit/posix/include/rtems/posix/threadsup.h | 48 ++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 cpukit/posix/include/rtems/posix/threadsup.h (limited to 'cpukit') diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 44eac5ea79..1b1dc734de 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,7 +1,6 @@ 2006-01-18 Ralf Corsépius * posix/include/intr.h, posix/include/rtems/posix/intr.h - posix/include/rtems/posix/threadsup.h, posix/inline/rtems/posix/intr.inl. posix/macros/rtems/posix/intr.inl, posix/src/intr.c: Remove (Unused, dead). diff --git a/cpukit/posix/include/rtems/posix/threadsup.h b/cpukit/posix/include/rtems/posix/threadsup.h new file mode 100644 index 0000000000..4e3bc4c085 --- /dev/null +++ b/cpukit/posix/include/rtems/posix/threadsup.h @@ -0,0 +1,48 @@ +/** + * @file rtems/posix/threadsup.h + */ + +/* threadsup.h + * + * $Id$ + */ + +#ifndef _RTEMS_POSIX_THREADSUP_H +#define _RTEMS_POSIX_THREADSUP_H + +#include +#include +#include + +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 */ -- cgit v1.2.3