source: rtems/c/src/exec/posix/include/rtems/posix/cancel.h @ 5e9b32b

4.104.114.84.95
Last change on this file since 5e9b32b was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 252 bytes
RevLine 
[5e9b32b]1/* rtems/posix/cancel.h
2 *
3 */
4
5#ifndef __RTEMS_POSIX_CANCEL_h
6#define __RTEMS_POSIX_CANCEL_h
7
8typedef 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.