[Previous] [Contents] [Next]

pthread_testcancel()

Test thread cancellation

Synopsis:

#include <pthread.h>

void pthread_testcancel( void );

Library:

libc

Description:

The pthread_testcancel() function creates a cancellation point in the calling thread. This function has no effect if cancellation is disabled.

Classification:

POSIX 1003.1 (Threads)

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

pthread_cancel(), pthread_setcancelstate(), pthread_setcancelstate(), ThreadCancel()


[Previous] [Contents] [Next]