Kernel/Userland: Add a halt syscall, and a shutdown binary to invoke it

This commit is contained in:
Robin Burchell 2019-06-16 11:49:39 +02:00 committed by Andreas Kling
commit 952382b413
Notes: sideshowbarker 2024-07-19 13:35:18 +09:00
5 changed files with 38 additions and 1 deletions

View file

@ -68,3 +68,11 @@ void FS::sync()
for (auto fs : fses)
fs->flush_writes();
}
void FS::lock_all()
{
for (auto& it : all_fses()) {
it.value->m_lock.lock();
}
}