|
NAMEpthread_setcancelstate ,
pthread_setcanceltype ,
pthread_testcancel —
set cancelability state
LIBRARYPOSIX Threads Library (libpthread, -lpthread)SYNOPSIS#include <pthread.h>
int
int
void
DESCRIPTIONThepthread_setcancelstate () function atomically both
sets the calling thread's cancelability state to the indicated
state and, if oldstate is not
NULL , returns the previous cancelability state at the
location referenced by oldstate. Legal values for
state are PTHREAD_CANCEL_ENABLE
and PTHREAD_CANCEL_DISABLE .
The The cancelability state and type of any newly created threads,
including the thread in which The Cancelability StatesThe cancelability state of a thread determines the action taken upon receipt of a cancellation request. The thread may control cancellation in a number of ways.Each thread maintains its own “cancelability state” which may be encoded in two bits:
Cancellation PointsCancellation points will occur when a thread is executing the following functions:
NOTESThepthread_setcancelstate () and
pthread_setcanceltype () functions are used to control
the points at which a thread may be asynchronously canceled. For cancellation
control to be usable in modular fashion, some rules must be followed.
For purposes of this discussion, consider an object to be a generalization of a procedure. It is a set of procedures and global variables written as a unit and called by clients not known by the object. Objects may depend on other objects. First, cancelability should only be disabled on entry to an object, never explicitly enabled. On exit from an object, the cancelability state should always be restored to its value on entry to the object. This follows from a modularity argument: if the client of an object (or the client of an object that uses that object) has disabled cancelability, it is because the client does not want to have to worry about how to clean up if the thread is canceled while executing some sequence of actions. If an object is called in such a state and it enables cancelability and a cancellation request is pending for that thread, then the thread will be canceled, contrary to the wish of the client that disabled. Second, the cancelability type may be explicitly set to either deferred or asynchronous upon entry to an object. But as with the cancelability state, on exit from an object that cancelability type should always be restored to its value on entry to the object. Finally, only functions that are cancel-safe may be called from a thread that is asynchronously cancelable. RETURN VALUESIf successful, thepthread_setcancelstate () and
pthread_setcanceltype () functions will return zero.
Otherwise, an error number shall be returned to indicate the error.
ERRORSThe functionpthread_setcancelstate () may fail with:
The function
SEE ALSOpthread_cancel(3)STANDARDSThepthread_testcancel () function conforms to
ISO/IEC 9945-1:1996 (“POSIX.1”). The
standard allows implementations to make many more functions cancellation
points.
AUTHORSThis manual page was written by David Leonard <d@openbsd.org> for the OpenBSD implementation of pthread_cancel(3).
Visit the GSP FreeBSD Man Page Interface. |