Kernel: Ignore unobserved BlockResult from Thread::Sleep

Suppress these in preparation for making BlockResult [[nodiscard]].
This commit is contained in:
Brian Gianforcaro 2021-02-14 15:08:09 -08:00 committed by Andreas Kling
parent ddd79fe2cf
commit a8a834782c
Notes: sideshowbarker 2024-07-18 22:18:25 +09:00
2 changed files with 2 additions and 2 deletions

View File

@ -450,7 +450,7 @@ void UHCIController::spawn_port_proc()
}
}
}
Thread::current()->sleep(sleep_time);
(void)Thread::current()->sleep(sleep_time);
}
});
}

View File

@ -38,7 +38,7 @@ void SyncTask::spawn()
dbgln("SyncTask is running");
for (;;) {
VFS::the().sync();
Thread::current()->sleep({ 1, 0 });
(void)Thread::current()->sleep({ 1, 0 });
}
});
}