From 33192ebab7fdff9227d8ba3b2008d011d3c4ab21 Mon Sep 17 00:00:00 2001 From: Akshit Gaur Date: Mon, 23 Mar 2026 21:18:13 +0530 Subject: [PATCH] {Get/Set}ProcPriority --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 406529af86..d120bc90fe 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -829,8 +829,8 @@ pub mod protocol { // Temporary calls for getting process credentials GetProcCredentials = 15, - SetPriority = 16, - GetPriority = 17, + SetProcPriority = 16, + GetProcPriority = 17, } #[derive(Clone, Copy, Debug, Eq, PartialEq)] #[repr(usize)] @@ -883,8 +883,8 @@ pub mod protocol { 13 => Self::Rename, 14 => Self::DisableSetpgid, 15 => Self::GetProcCredentials, - 16 => Self::SetPriority, - 17 => Self::GetPriority, + 16 => Self::SetProcPriority, + 17 => Self::GetProcPriority, _ => return None, }) }