summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/cancel.h
blob: 30c2f1797515776b18275d0fd9f774f56fce2260 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* rtems/posix/cancel.h
 *
 *  $Id$
 */

#ifndef __RTEMS_POSIX_CANCEL_h
#define __RTEMS_POSIX_CANCEL_h

typedef struct {
  Chain_Node  Node;
  void      (*routine)( void * );
  void       *arg;
}  POSIX_Cancel_Handler_control;

/*
 *  POSIX_Thread_cancel_run
 *
 *  DESCRIPTION:
 *
 *  XXX
 */

void POSIX_Thread_cancel_run(
  Thread_Control *the_thread
);

#endif
/* end of include file */