source:
rtems/c/src/exec/posix/include/rtems/posix/cancel.h
@
5e9b32b
Last change on this file since 5e9b32b was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15 | |
---|---|
|
|
File size: 252 bytes |
Line | |
---|---|
1 | /* rtems/posix/cancel.h |
2 | * |
3 | */ |
4 | |
5 | #ifndef __RTEMS_POSIX_CANCEL_h |
6 | #define __RTEMS_POSIX_CANCEL_h |
7 | |
8 | typedef struct { |
9 | Chain_Node Node; |
10 | void (*routine)( void * ); |
11 | void *arg; |
12 | } POSIX_Cancel_Handler_control; |
13 | |
14 | #endif |
15 | /* end of include file */ |
Note: See TracBrowser
for help on using the repository browser.