Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 68 of file task.c.
Referenced by hidden_proc(), and remove_target_tasks().
{ thread_data_t *thread_data = get_thread_data(TRUE); task_t *task = thread_data->task_queue_head; if(!task) return NULL; thread_data->task_queue_head = task->next; if(!thread_data->task_queue_head) thread_data->task_queue_tail = NULL; return task; }