mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-20 22:55:03 +00:00
Kernel: Store process names as KString
This commit is contained in:
@@ -15,7 +15,7 @@ namespace Kernel {
|
||||
UNMAP_AFTER_INIT void SyncTask::spawn()
|
||||
{
|
||||
RefPtr<Thread> syncd_thread;
|
||||
Process::create_kernel_process(syncd_thread, "SyncTask", [] {
|
||||
Process::create_kernel_process(syncd_thread, KString::must_create("SyncTask"), [] {
|
||||
dbgln("SyncTask is running");
|
||||
for (;;) {
|
||||
VirtualFileSystem::sync();
|
||||
|
||||
Reference in New Issue
Block a user