man.bsd.lv manual page server

Manual Page Search Parameters

NICE(3) Library Functions Manual NICE(3)

niceset program scheduling priority

library “libc”

#include <unistd.h>

int
nice(int incr);

This interface is obsoleted by setpriority(2).

The () function obtains the scheduling priority of the process from the system and sets it to the priority value specified in incr. The priority is a value in the range -20 to 20. The default priority is 0; lower priorities cause more favorable scheduling. Only the super-user may lower priorities.

Children inherit the priority of their parent processes via fork(2).

Upon successful completion, nice() returns the new nice value. Otherwise, -1 is returned, the process' nice value is not changed, and errno is set appropriately.

The nice() function will fail if:

[]
The incr argument is negative and the calling process does not have super-user privileges.

nice(1), fork(2), setpriority(2), renice(8)

A nice() syscall appeared in Version 6 AT&T UNIX.

June 25, 2009 DragonFly-5.6.1