Process.setpriority(kind, integer, priority) â 0
Class Public methods
See Process#getpriority
.
1 2 3 4 | Process.setpriority(Process:: PRIO_USER , 0 , 19 ) #=> 0 Process.setpriority(Process:: PRIO_PROCESS , 0 , 19 ) #=> 0 Process.getpriority(Process:: PRIO_USER , 0 ) #=> 19 Process.getpriority(Process:: PRIO_PROCESS , 0 ) #=> 19 |
Please login to continue.