URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [include/] [rtems/] [posix/] [cancel.h] - Rev 1765
Compare with Previous | Blame | View Log
/* rtems/posix/cancel.h * * cancel.h,v 1.6 2002/07/05 18:13:18 joel Exp */ #ifndef __RTEMS_POSIX_CANCEL_h #define __RTEMS_POSIX_CANCEL_h typedef struct { Chain_Node Node; void (*routine)( void * ); void *arg; } POSIX_Cancel_Handler_control; /* * _POSIX_Threads_cancel_run * * DESCRIPTION: * * This support routine runs through the chain of cancel handlers that * have been registered and executes them. */ void _POSIX_Threads_cancel_run( Thread_Control *the_thread ); #endif /* end of include file */