source: rtems/cpukit/posix/include/rtems/posix/threadsup.h @ 5a18e04

4.104.114.84.95
Last change on this file since 5a18e04 was 5a18e04, checked in by Joel Sherrill <joel.sherrill@…>, on 05/28/96 at 19:28:32

added initial set of api extension callouts

  • Property mode set to 100644
File size: 592 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#if 0
13  /*
14   *  POSIX Interrupts
15   */
16  unsigned32              interrupts_installed;
17  CORE_semaphore_Control  Interrupt_Semaphore;
18#endif
19
20  /*
21   *  POSIX Cancelability
22   */
23  int                     cancelability_state;
24  int                     cancelability_type;
25  int                     cancelation_requested;
26  Chain_Control           Cancellation_Handlers;
27
28} POSIX_API_Control;
29
30#endif
31/* end of include file */
32
Note: See TracBrowser for help on using the repository browser.