Home
last modified time | relevance | path

Searched refs:TSTP_FORK (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/threads/
H A Dthr.c1857 whystopped == TSTP_FORK); in safe_suspend()
1953 ASSERT((whystopped & (TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) != 0); in _thrp_suspend()
1954 ASSERT((whystopped & ~(TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) == 0); in _thrp_suspend()
2026 if (whystopped & TSTP_FORK) { in _thrp_suspend()
2076 ulwp->ul_stop |= TSTP_FORK; in suspend_fork()
2083 if (safe_suspend(ulwp, TSTP_FORK, &link_dropped) || in suspend_fork()
2119 ASSERT(ulwp->ul_stop & TSTP_FORK); in continue_fork()
2120 ulwp->ul_stop &= ~TSTP_FORK; in continue_fork()
/illumos-gate/usr/src/lib/libc/inc/
H A Dthr_uberdata.h1213 #define TSTP_FORK 0x20 /* stopped by suspend_fork() */ macro