mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 20:29:18 +00:00
Kernel: Unify Kernel task names for consistency
This change unifies the naming convention for kernel tasks. The goal of this change is to: - Make the task names more descriptive, so users can more easily understand their purpose in System Monitor. - Unify the naming convention so they are consistent.
This commit is contained in:
parent
5fd3716e2f
commit
6b85b358f8
Notes:
sideshowbarker
2024-07-17 10:27:07 +09:00
Author: https://github.com/bgianfo
Commit: 6b85b358f8
Pull-request: https://github.com/SerenityOS/serenity/pull/14190
Reviewed-by: https://github.com/linusg ✅
6 changed files with 10 additions and 8 deletions
|
@ -43,7 +43,7 @@ static HashTable<RefPtr<TCPSocket>>* delayed_ack_sockets;
|
|||
void NetworkTask::spawn()
|
||||
{
|
||||
RefPtr<Thread> thread;
|
||||
auto name = KString::try_create("NetworkTask");
|
||||
auto name = KString::try_create("Network Task");
|
||||
if (name.is_error())
|
||||
TODO();
|
||||
(void)Process::create_kernel_process(thread, name.release_value(), NetworkTask_main, nullptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue