mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 06:32:54 +00:00
Kernel/Tasks: Allow Kernel processes to be shut down
Since we never check a kernel process's state like a userland process, it's possible for a kernel process to ignore the fact that someone is trying to kill it, and continue running. This is not desireable if we want to properly shutdown all processes, including Kernel ones.
This commit is contained in:
parent
8940552d1d
commit
021fb3ea05
Notes:
sideshowbarker
2024-07-17 02:42:21 +09:00
Author: https://github.com/kleinesfilmroellchen
Commit: 021fb3ea05
Pull-request: https://github.com/SerenityOS/serenity/pull/19668
Reviewed-by: https://github.com/gmta ✅
Reviewed-by: https://github.com/linusg
7 changed files with 22 additions and 9 deletions
|
@ -16,10 +16,12 @@ UNMAP_AFTER_INIT void SyncTask::spawn()
|
|||
{
|
||||
MUST(Process::create_kernel_process(KString::must_create("VFS Sync Task"sv), [] {
|
||||
dbgln("VFS SyncTask is running");
|
||||
for (;;) {
|
||||
while (!Process::current().is_dying()) {
|
||||
VirtualFileSystem::sync();
|
||||
(void)Thread::current()->sleep(Duration::from_seconds(1));
|
||||
}
|
||||
Process::current().sys$exit(0);
|
||||
VERIFY_NOT_REACHED();
|
||||
}));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue