diff --git a/thread_pool.cpp b/thread_pool.cpp index 35adead..2671c4e 100644 --- a/thread_pool.cpp +++ b/thread_pool.cpp @@ -114,7 +114,7 @@ void ThreadPool::cancel_job_wait(Ref job) { job->set_cancelled(true); while (_threads[i]->job == job) { - OS::get_singleton()->delay_usec(1000); + OS::get_singleton()->delay_usec(100); } return;