本文簡要介紹ruby語言中 Process.getpriority
的用法。
用法
getpriority(kind, integer) → integer
獲取指定進程、進程組或用戶的調度優先級。 kind
指示要查找的實體類型: Process::PRIO_PGRP
、 Process::PRIO_USER
或 Process::PRIO_PROCESS
之一。 integer
是表示特定進程、進程組或用戶的 id(id 為 0 表示 current
)。較低的優先級更有利於調度。並非在所有平台上都可用。
Process.getpriority(Process::PRIO_USER, 0) #=> 19
Process.getpriority(Process::PRIO_PROCESS, 0) #=> 19
相關用法
- Ruby Process.getpgrp用法及代碼示例
- Ruby Process.getpgid用法及代碼示例
- Ruby Process.getsid用法及代碼示例
- Ruby Process.groups用法及代碼示例
- Ruby Process.groups=用法及代碼示例
- Ruby Process.gid用法及代碼示例
- Ruby Process.wait2用法及代碼示例
- Ruby Process.setproctitle用法及代碼示例
- Ruby Process.setrlimit用法及代碼示例
- Ruby Process.uid用法及代碼示例
- Ruby Process.pid用法及代碼示例
- Ruby Process.detach用法及代碼示例
- Ruby Process.maxgroups用法及代碼示例
- Ruby Process.clock_gettime用法及代碼示例
- Ruby Process.exec用法及代碼示例
- Ruby Process.clock_getres用法及代碼示例
- Ruby Process.times用法及代碼示例
- Ruby Process.euid用法及代碼示例
- Ruby Process.exit用法及代碼示例
- Ruby Process.setpriority用法及代碼示例
- Ruby Process.kill用法及代碼示例
- Ruby Process.initgroups用法及代碼示例
- Ruby Process.spawn用法及代碼示例
- Ruby Process.egid用法及代碼示例
- Ruby Process.last_status用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Process.getpriority。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。