*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: nice | Section: 3 | Source: OpenBSD | File: nice.3
NICE(3) FreeBSD Library Functions Manual NICE(3) NAME nice - change process scheduling priority SYNOPSIS #include <unistd.h> int nice(int incr); DESCRIPTION This interface is obsoleted by setpriority(2). The nice() function adds the value specified in incr to the scheduling priority of the invoking process. incr is an integer such that the resulting scheduling priority is within the range -20 to 20. Priority values outside this range are truncated to the appropriate limit. The default priority is 0; lower priorities cause more favorable scheduling. Only the superuser may lower priorities. Children inherit the priority of their parent processes via fork(2). RETURN VALUES On success, nice() returns the new priority. On error, it returns -1. Since nice() can legitimately return the value -1, it is necessary to clear the external variable errno prior to the call, then check it afterward to determine if a -1 is an error or a legitimate value. ERRORS nice() has the same failure conditions as setpriority(2). SEE ALSO nice(1), fork(2), setpriority(2), renice(8) HISTORY A nice() system call first appeared in Version 3 AT&T UNIX. It has accepted an incr argument since Version 4 AT&T UNIX. FreeBSD 14.1-RELEASE-p8 July 18, 2013 FreeBSD 14.1-RELEASE-p8

Navigation Options