Home
last modified time | relevance | path

Searched refs:THR_CANCEL_NEEDED (Results 1 – 3 of 3) sorted by relevance

/dragonfly/lib/libthread_xu/thread/
H A Dthr_cancel.c55 if (oldval & THR_CANCEL_NEEDED) in _pthread_cancel()
57 newval = oldval | THR_CANCEL_NEEDED; in _pthread_cancel()
60 if (!(oldval & THR_CANCEL_NEEDED) && SHOULD_ASYNC_CANCEL(newval)) in _pthread_cancel()
H A Dthr_private.h379 #define THR_CANCEL_NEEDED 0x0008 macro
382 THR_CANCEL_NEEDED)) == THR_CANCEL_NEEDED)
386 THR_CANCEL_NEEDED | THR_CANCEL_AT_POINT)) == \
387 (THR_CANCEL_NEEDED | THR_CANCEL_AT_POINT))
H A Dthr_fork.c247 curthread->cancelflags &= ~THR_CANCEL_NEEDED; in _fork()