Lines Matching refs:thread_number
205 Workqueue::should_cancel_thread(int thread_number) in should_cancel_thread() argument
207 return this->threader_->should_cancel_thread(thread_number); in should_cancel_thread()
250 Workqueue::find_runnable_or_wait(int thread_number) in find_runnable_or_wait() argument
267 if (this->should_cancel_thread(thread_number)) in find_runnable_or_wait()
270 gold_debug(DEBUG_TASK, "%3d sleeping", thread_number); in find_runnable_or_wait()
274 gold_debug(DEBUG_TASK, "%3d awake", thread_number); in find_runnable_or_wait()
289 Workqueue::find_and_run_task(int thread_number) in find_and_run_task() argument
298 t = this->find_runnable_or_wait(thread_number); in find_and_run_task()
312 gold_debug(DEBUG_TASK, "%3d running task %s", thread_number, in find_and_run_task()
328 thread_number, t->name().c_str(), in find_and_run_task()
493 Workqueue::process(int thread_number) in process() argument
495 while (this->find_and_run_task(thread_number)) in process()