mirror of
https://github.com/RGBCube/serenity
synced 2025-05-28 13:55:06 +00:00
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.
This commit is contained in:
parent
aaf691c4ef
commit
b72f067f0d
10 changed files with 10 additions and 19 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue