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/posix/include/rtems/posix/threadsup.h | 48 ++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 cpukit/posix/include/rtems/posix/threadsup.h (limited to 'cpukit/posix/include/rtems/posix/threadsup.h') 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