Home
last modified time | relevance | path

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

/titanic_53/usr/src/lib/libc/port/threads/
H A Dthr.c1856 whystopped == TSTP_FORK); in safe_suspend()
1952 ASSERT((whystopped & (TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) != 0); in _thrp_suspend()
1953 ASSERT((whystopped & ~(TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) == 0); in _thrp_suspend()
2025 if (whystopped & TSTP_FORK) { in _thrp_suspend()
2075 ulwp->ul_stop |= TSTP_FORK; in suspend_fork()
2082 if (safe_suspend(ulwp, TSTP_FORK, &link_dropped) || in suspend_fork()
2118 ASSERT(ulwp->ul_stop & TSTP_FORK); in continue_fork()
2119 ulwp->ul_stop &= ~TSTP_FORK; in continue_fork()
/titanic_53/usr/src/lib/libc/inc/
H A Dthr_uberdata.h1195 #define TSTP_FORK 0x20 /* stopped by suspend_fork() */ macro