diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-28 08:25:05 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-28 08:25:53 +0100 |
commit | b72f067f0daac88ebe66e3f714e517b995b48e7b (patch) | |
tree | a7a124e831ef9ec537f71614e3957f2b580735fa /Kernel/FileSystem | |
parent | aaf691c4efc1e43e83f13cdf403f69d89f889d38 (diff) | |
download | serenity-b72f067f0daac88ebe66e3f714e517b995b48e7b.zip |
Kernel+Userland: Remove unused "effective priority" from threads
This has been merged with the regular Thread::priority field after
the recent changes to the scheduler.
Diffstat (limited to 'Kernel/FileSystem')
-rw-r--r-- | Kernel/FileSystem/ProcFS.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/FileSystem/ProcFS.cpp b/Kernel/FileSystem/ProcFS.cpp index 9e5fe17c37..2ed82dffd8 100644 --- a/Kernel/FileSystem/ProcFS.cpp +++ b/Kernel/FileSystem/ProcFS.cpp @@ -795,7 +795,6 @@ static bool procfs$all(InodeIdentifier, KBufferBuilder& builder) thread_object.add("state", thread.state_string()); thread_object.add("cpu", thread.cpu()); thread_object.add("priority", thread.priority()); - thread_object.add("effective_priority", thread.effective_priority()); thread_object.add("syscall_count", thread.syscall_count()); thread_object.add("inode_faults", thread.inode_faults()); thread_object.add("zero_faults", thread.zero_faults()); |