cancel.h
来自「RTEMS (Real-Time Executive for Multiproc」· C头文件 代码 · 共 30 行
H
30 行
/* rtems/posix/cancel.h * * $Id: cancel.h,v 1.6 2002/07/05 18:13:18 joel Exp $ */#ifndef __RTEMS_POSIX_CANCEL_h#define __RTEMS_POSIX_CANCEL_htypedef 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 */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?