⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pthread_setcancelstate.txt

📁 Pthread lib库完整说明文档
💻 TXT
字号:
pthread_setcancelstate SubroutinePurposeSets the calling thread's cancelability state.LibraryThreads Library (libpthreads.a)Syntax#include <pthread.h>int pthread_setcancelstate (state, oldstate)int state;int *oldstate;DescriptionThe pthread_setcancelstate subroutine sets the calling thread's cancelabilitystate to state. It also returns the previous cancellability state.The cancelability state specifies whatever a thread can be canceled.Note:	The pthread.h header file must be the first included file ofeach source file using the threads library.Parametersstate	Specifies the new cancelability state to set. It must have oneof the following values:PTHREAD_CANCEL_DISABLE	Disables cancelability; the thread is not cancelable.Cancellation requests are held pending.PTHREAD_CANCEL_ENABLE	Enables cancelability; the thread is cancelable,according to its cancelability type. This is the default value.oldstate	Points to where the previous cancelability state value willbe stored.Return ValuesUpon successful completion, the previous value of the cancelabilitystate is returned via the oldstate parameter, and 0 is returned. Otherwise,an error code is returned.Error CodesThe pthread_setcancelstate subroutine is unsuccessful if the followingis true:EINVAL	The value of the state parameter is not valid.Implementation SpecificsThis subroutine is part of the Base Operating System (BOS) Runtime.Related InformationThe pthread_cancel subroutine, pthread_setcanceltype subroutine, pthread_testcancelsubroutine.Terminating Threads.Threads Library Quick Reference.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -