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

4.104.114.84.95
Last change on this file since eb5a7e07 was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38

fixed missing CVS IDs

  • Property mode set to 100644
File size: 261 bytes
Line 
1/* rtems/posix/cancel.h
2 *
3 *  $Id$
4 */
5
6#ifndef __RTEMS_POSIX_CANCEL_h
7#define __RTEMS_POSIX_CANCEL_h
8
9typedef struct {
10  Chain_Node  Node;
11  void      (*routine)( void * );
12  void       *arg;
13}  POSIX_Cancel_Handler_control;
14
15#endif
16/* end of include file */
Note: See TracBrowser for help on using the repository browser.