summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/headers/cancel.h
blob: de059d317d13f21ec977c21ec6afba6264256224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* rtems/posix/cancel.h
 *
 */

#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 */