summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/headers/cancel.h
blob: e6d80275f4d64f904eb5407b46bd30c1c683fac2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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;

#endif
/* end of include file */