diff options
author | Brian Gianforcaro <bgianf@serenityos.org> | 2022-06-04 21:44:48 -0700 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-06-05 14:09:44 +0100 |
commit | 6b85b358f8fa7ab0c945202cb9c7a8c3d348e7b1 (patch) | |
tree | b46a4e73e93c8d841c41e618c62835bdd2906264 /Kernel/Net | |
parent | 5fd3716e2fbb885e1623aac1f9fea98bd972107a (diff) | |
download | serenity-6b85b358f8fa7ab0c945202cb9c7a8c3d348e7b1.zip |
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.
Diffstat (limited to 'Kernel/Net')
-rw-r--r-- | Kernel/Net/NetworkTask.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/NetworkTask.cpp b/Kernel/Net/NetworkTask.cpp index d5996e0e6e..632ca05beb 100644 --- a/Kernel/Net/NetworkTask.cpp +++ b/Kernel/Net/NetworkTask.cpp @@ -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); |