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

4.104.114.84.95
Last change on this file since eb5a7e07 was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38

fixed missing CVS IDs

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