Searched refs:TH_SUSP (Results 1 - 5 of 5) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/osfmk/kern/
H A Dsched_prim.c884 while (thread->state & TH_SUSP) {
903 thread->state |= TH_SUSP;
955 if ((thread->state & (TH_RUN|TH_WAIT|TH_SUSP)) == TH_SUSP) {
956 thread->state &= ~TH_SUSP;
962 if (thread->state & TH_SUSP) {
963 thread->state &= ~TH_SUSP;
1339 if ((thread->state & (TH_IDLE|TH_TERMINATE|TH_SUSP)) || !(thread->state & TH_WAIT) || thread->wake_active)
2597 if (processor->active_thread->state & TH_SUSP)
2873 (thread == THREAD_NULL || ((thread->state & (TH_WAIT|TH_SUSP))
[all...]
H A Dthread.h177 #define TH_SUSP 0x02 /* stopped or requested to stop */ macro
H A Dthread.c939 if (thread->state & TH_SUSP)
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/
H A Ddb_print.c233 *p++ = (athread->state & TH_SUSP) ? 'S' : '.';
321 (athread->state & TH_SUSP) ? 'S' : ' ',
/macosx-10.5.8/xnu-1228.15.4/osfmk/ddb/orig/
H A Ddb_print.c181 * Thread control ops synchronization: now that TH_SUSP is back,
549 *p++ = (athread->state & TH_SUSP) ? 'S' : '.';
667 (athread->state & TH_SUSP) ? 'S' : ' ',

Completed in 191 milliseconds