Home
last modified time | relevance | path

Searched refs:cancel_async (Results 1 – 7 of 7) sorted by relevance

/freebsd/lib/libthr/thread/
H A Dthr_cancel.c100 if (state == PTHREAD_CANCEL_ENABLE && curthread->cancel_async) in _thr_setcancelstate()
115 oldval = curthread->cancel_async; in _thr_setcanceltype()
118 curthread->cancel_async = 1; in _thr_setcanceltype()
122 curthread->cancel_async = 0; in _thr_setcanceltype()
H A Dthr_sig.c270 int cancel_async; in handle_signal() local
295 cancel_async = curthread->cancel_async; in handle_signal()
298 if (!cancel_async) in handle_signal()
383 } else if (curthread->cancel_async) { in check_cancel()
H A Dthr_exit.c223 curthread->cancel_async = 0;
H A Dthr_fork.c303 if (curthread->cancel_async) in thr_fork_impl()
H A Dthr_create.c125 new_thread->cancel_async = 0; in _pthread_create()
H A Dthr_init.c421 thread->cancel_async = 0; in init_main_thread()
H A Dthr_private.h438 int cancel_async; member