mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 13:45:06 +00:00
Kernel: Ignore unobserved BlockResult from Thread::Sleep
Suppress these in preparation for making BlockResult [[nodiscard]].
This commit is contained in:
parent
ddd79fe2cf
commit
a8a834782c
2 changed files with 2 additions and 2 deletions
|
@ -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 });
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue