summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/threadsup.h
blob: 39a3c9d51a67cce57d8c583b39e63f86543ae95a (plain) (tree)




























                                                
/* threadsup.h
 *
 */

#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
#define __RTEMS_POSIX_THREAD_SUPPORT_h

#include <rtems/score/coresem.h>

typedef struct {
  /*
   *  POSIX Interrupts 
   */
  unsigned32              interrupts_installed;
  CORE_semaphore_Control  Interrupt_Semaphore;

  /*
   *  POSIX Cancelability 
   */
  int                     cancelability_state;
  int                     cancelability_type;
  int                     cancelation_requested;
  Chain_Control           Cancellation_Handlers;

} POSIX_API_Thread_Support_Control;

#endif
/* end of include file */