summaryrefslogblamecommitdiffstats
path: root/c/src/exec/posix/include/rtems/posix/threadsup.h
blob: 23f33be5d5b56e7c4d1fb187d8ed18d6b952b465 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

              
        







                                      
                                     
                                      
     




                                               
      
 
     






                                                
      
 
                    



                         
/* threadsup.h
 *
 *  $Id$
 */

#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
#define __RTEMS_POSIX_THREAD_SUPPORT_h

#include <rtems/score/coresem.h>

typedef struct {
  pthread_attr_t          Attributes;
  int                     detachstate;
#if 0
  /*
   *  POSIX Interrupts 
   */
  unsigned32              interrupts_installed;
  CORE_semaphore_Control  Interrupt_Semaphore;
#endif

#if 0
  /*
   *  POSIX Cancelability 
   */
  int                     cancelability_state;
  int                     cancelability_type;
  int                     cancelation_requested;
  Chain_Control           Cancellation_Handlers;
#endif

} POSIX_API_Control;

#endif
/* end of include file */