From b72f067f0daac88ebe66e3f714e517b995b48e7b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 Jan 2021 08:25:05 +0100 Subject: 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. --- Kernel/FileSystem/ProcFS.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'Kernel/FileSystem/ProcFS.cpp') 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()); -- cgit v1.2.3