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

/macosx-10.10.1/xnu-2782.1.97/osfmk/kern/
H A Dcoalition.c91 uint64_t dead_task_count; /* Count of tasks that have exited in this coalition; subtract from task_count to get count of "active" */ member in struct:coalition
190 cru_out->tasks_exited = coal->dead_task_count;
554 if(coal->task_count < coal->dead_task_count) {
555 panic("%s: coalition %p id %llu task_count < dead_task_count", __func__, coal, coal->id);
559 if (coal->task_count - coal->dead_task_count == 1) {
590 coal->dead_task_count++;
592 if(coal->task_count < coal->dead_task_count) {
593 panic("%s: coalition %p id %llu task_count < dead_task_count", __func__, coal, coal->id);
597 if (coal->task_count - coal->dead_task_count == 0) {

Completed in 164 milliseconds