Go to the previous, next section.
int nice(int inc);
inc: [in] the increment.
Adds inc to the priority of the calling task. Only a task with superuser privileges may specify a negative inc.
On success, returns 0. On error, returns -1 and errno
is set
to one of the following values: EPERM
: the task tried to decrease
the priority value but does not have superuser privileges.
Go to the previous, next section.