source: rtems/c/src/exec/posix/headers/threadsup.h @ 37f4c2d

4.104.114.84.95
Last change on this file since 37f4c2d was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 585 bytes
Line 
1/* threadsup.h
2 *
3 */
4
5#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h
6#define __RTEMS_POSIX_THREAD_SUPPORT_h
7
8#include <rtems/score/coresem.h>
9
10typedef struct {
11  /*
12   *  POSIX Interrupts
13   */
14  unsigned32              interrupts_installed;
15  CORE_semaphore_Control  Interrupt_Semaphore;
16
17  /*
18   *  POSIX Cancelability
19   */
20  int                     cancelability_state;
21  int                     cancelability_type;
22  int                     cancelation_requested;
23  Chain_Control           Cancellation_Handlers;
24
25} POSIX_API_Thread_Support_Control;
26
27#endif
28/* end of include file */
29
Note: See TracBrowser for help on using the repository browser.