Reduce wait in async executor.

This commit is contained in:
Drew Galbraith 2025-02-01 14:29:38 -08:00
parent feb7c8e839
commit faa71d08c5
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ impl Executor {
loop {
self.run_ready_tasks();
// TODO: We need some sort of semaphore wait here.
syscall::thread_sleep(50).unwrap();
syscall::thread_sleep(10).unwrap();
}
}