source: rtems/cpukit/posix/include/rtems/posix/threadsup.h @ 47d6b140

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

commented out interrupt support

  • Property mode set to 100644
File size: 607 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_Thread_Support_Control;
29
30#endif
31/* end of include file */
32
Note: See TracBrowser for help on using the repository browser.