Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libc/port/threads/
H A Dthr.c1855 whystopped == TSTP_FORK); in safe_suspend()
1951 ASSERT((whystopped & (TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) != 0); in _thrp_suspend()
1952 ASSERT((whystopped & ~(TSTP_REGULAR|TSTP_MUTATOR|TSTP_FORK)) == 0); in _thrp_suspend()
2024 if (whystopped & TSTP_FORK) { in _thrp_suspend()
2074 ulwp->ul_stop |= TSTP_FORK; in suspend_fork()
2081 if (safe_suspend(ulwp, TSTP_FORK, &link_dropped) || in suspend_fork()
2117 ASSERT(ulwp->ul_stop & TSTP_FORK); in continue_fork()
2118 ulwp->ul_stop &= ~TSTP_FORK; in continue_fork()
/titanic_41/usr/src/lib/libc/inc/
H A Dthr_uberdata.h1170 #define TSTP_FORK 0x20 /* stopped by suspend_fork() */ macro