source: rtems/cpukit/posix/include/rtems/posix/threadsup.h @ 4427a64

4.104.114.84.95
Last change on this file since 4427a64 was 4427a64, checked in by Joel Sherrill <joel.sherrill@…>, on 06/03/96 at 21:06:12

deleted POSIX threads typedef masking Thread_Control

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