SUNWcsu
If the first operand is a number within the valid range of priorities (-20 to 20), renice will treat it as a priority (as in all but the first synopsis form); otherwise, renice will treat it as an ID (as in the first synopsis form).
Users other than the privileged user may only alter the priority of processes they own, and can only monotonically increase their ‘nice value’ within the range 0 to 19. This prevents overriding administrative fiats. The privileged user may alter the priority of any process and set the priority to any value in the range -20 to 19. Useful priorities are: 19 (the affected processes will run only when nothing else in the system wants to), 0 (the ‘base’ scheduling priority) and any negative value (to make things go very fast). 20 is an acceptable nice value, but will be rounded down to 19.
- The first operand, priority, must precede the options and can have the appearance of a multi-digit option.
- The -g, -p and -u options can each take multiple option-arguments.
- The pid option-argument can be used without its -p option.
The following options are supported:
Positive increment values cause a lower system scheduling priority. Negative increment values may require appropriate privileges and will cause a higher system scheduling priority.
Adjust the system scheduling priority so that process IDs 987 and 32 would have a lower scheduling priority:
example% renice -n 5 -p 987 32
Adjust the system scheduling priority so that group IDs 324 and 76 would have a higher scheduling priority, if the user has the appropriate privileges to do so:
example% renice -n -4 -g 324 76
Adjust the system scheduling priority so that numeric user ID 8 and user sas would have a lower scheduling priority:
example% renice -n 4 -u 8 sas
If you make the priority very negative, then the process cannot be interrupted.
To regain control you must make the priority greater than 0.
Users other than the privileged user cannot increase scheduling priorities of their own processes, even if they were the ones that decreased the priorities in the first place.
The priocntl command subsumes the function of renice.