Searched refs:zombieQueue (Results 1 – 4 of 4) sorted by relevance
| /sys/kern/ |
| D | process.c | 81 TAILQ_INIT(&proc->zombieQueue); in Process_Create() 228 while (!TAILQ_EMPTY(&p->zombieQueue)) { in Process_Wait() 229 thr = TAILQ_FIRST(&p->zombieQueue); in Process_Wait() 230 TAILQ_REMOVE(&p->zombieQueue, thr, schedQueue); in Process_Wait()
|
| D | thread.c | 287 t = TAILQ_FIRST(&thr->proc->zombieQueue); in Thread_Wait() 292 TAILQ_REMOVE(&thr->proc->zombieQueue, t, schedQueue); in Thread_Wait() 299 TAILQ_FOREACH(t, &thr->proc->zombieQueue, schedQueue) { in Thread_Wait() 301 TAILQ_REMOVE(&thr->proc->zombieQueue, t, schedQueue); in Thread_Wait()
|
| D | sched.c | 157 TAILQ_INSERT_TAIL(&proc->zombieQueue, thr, schedQueue); in Sched_SetZombie()
|
| /sys/include/ |
| D | thread.h | 89 ThreadQueue zombieQueue; member
|