PTHREAD_TESTCANCEL - Linux手册页
时间:2019-08-20 18:01:06 来源:igfitidea点击:
Linux程序员手册 第3部分
更新日期: 2020-06-09
名称
pthread_testcancel-请求发送任何未决的取消请求
语法
#include <pthread.h> void pthread_testcancel(void); Compile and link with -pthread.
说明
调用pthread_testcancel()会在调用线程中创建一个取消点,以便正在执行不包含取消点的代码的线程将响应取消请求。
如果禁用可取消性(使用pthread_setcancelstate(3)),或者没有取消请求待处理,则对pthread_testcancel()的调用无效。
返回值
该函数不返回值。如果由于调用此函数而取消了调用线程,则该函数不会返回。
错误说明
此功能始终成功。
属性
有关本节中使用的术语的说明,请参见attribute(7)。
Interface | Attribute | Value |
pthread_testcancel() | Thread safety | MT-Safe |
遵循规范
POSIX.1-2001,POSIX.1-2008。
示例
请参见pthread_cleanup_push(3)。
另外参见
pthread_cancel(3),pthread_cleanup_push(3),pthread_setcancelstate(3),pthreads(7)
出版信息
这个页面是Linux手册页项目5.08版的一部分。有关项目的说明、有关报告错误的信息以及此页面的最新版本,请访问https://www.kernel.org/doc/man-pages/。