1 .\" Copyright (c) 1980, 1991 The Regents of the University of California.
2 .\" All rights reserved.
4 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
5 .\" Redistribution and use in source and binary forms, with or without
6 .\" modification, are permitted provided that the following conditions
8 .\" 1. Redistributions of source code must retain the above copyright
9 .\" notice, this list of conditions and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\" notice, this list of conditions and the following disclaimer in the
12 .\" documentation and/or other materials provided with the distribution.
13 .\" 3. All advertising materials mentioning features or use of this software
14 .\" must display the following acknowledgement:
15 .\" This product includes software developed by the University of
16 .\" California, Berkeley and its contributors.
17 .\" 4. Neither the name of the University nor the names of its contributors
18 .\" may be used to endorse or promote products derived from this software
19 .\" without specific prior written permission.
21 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 .\" @(#)getpriority.2 6.9 (Berkeley) 3/10/91
36 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
37 .\" Modified 1996-07-01 by Andries Brouwer <aeb@cwi.nl>
38 .\" Modified 1996-11-06 by Eric S. Raymond <esr@thyrsus.com>
39 .\" Modified 2001-10-21 by Michael Kerrisk <mtk.manpages@gmail.com>
40 .\" Corrected statement under EPERM to clarify privileges required
41 .\" Modified 2002-06-21 by Michael Kerrisk <mtk.manpages@gmail.com>
42 .\" Clarified meaning of 0 value for 'who' argument
43 .\" Modified 2004-05-27 by Michael Kerrisk <mtk.manpages@gmail.com>
45 .TH GETPRIORITY 2 2021-03-22 "Linux" "Linux Programmer's Manual"
47 getpriority, setpriority \- get/set program scheduling priority
50 .B #include <sys/resource.h>
52 .BI "int getpriority(int " which ", id_t " who );
53 .BI "int setpriority(int " which ", id_t " who ", int " prio );
56 The scheduling priority of the process, process group, or user, as
66 The process attribute dealt with by these system calls is
67 the same attribute (also known as the "nice" value) that is dealt with by
79 is interpreted relative to
81 (a process identifier for
90 denotes (respectively) the calling process, the process group of the
91 calling process, or the real user ID of the calling process.
95 argument is a value in the range \-20 to 19 (but see NOTES below),
96 with \-20 being the highest priority and 19 being the lowest priority.
97 Attempts to set a priority outside this range
98 are silently clamped to the range.
99 The default priority is 0;
100 lower values give a process a higher scheduling priority.
104 call returns the highest priority (lowest numerical value)
105 enjoyed by any of the specified processes.
108 call sets the priorities of all of the specified processes
109 to the specified value.
111 Traditionally, only a privileged process could lower the nice value
112 (i.e., set a higher priority).
113 However, since Linux 2.6.12, an unprivileged process can decrease
114 the nice value of a target process that has a suitable
122 returns the calling thread's nice value, which may be a negative number.
123 On error, it returns \-1 and sets
125 to indicate the error.
127 Since a successful call to
129 can legitimately return the value \-1, it is necessary
135 afterward to determine
136 if \-1 is an error or a legitimate value.
139 returns 0 on success.
140 On failure, it returns \-1 and sets
142 to indicate the error.
154 No process was located using the
160 In addition to the errors indicated above,
165 The caller attempted to set a lower nice value
166 (i.e., a higher process priority), but did not
167 have the required privilege (on Linux: did not have the
172 A process was located, but its effective user ID did not match
173 either the effective or the real user ID of the caller,
174 and was not privileged (on Linux: did not have the
179 POSIX.1-2001, POSIX.1-2008,
180 SVr4, 4.4BSD (these interfaces first appeared in 4.2BSD).
182 For further details on the nice value, see
186 the addition of the "autogroup" feature in Linux 2.6.38 means that
187 the nice value no longer has its traditional effect in many circumstances.
193 inherits its parent's nice value.
194 The nice value is preserved across
197 The details on the condition for
199 depend on the system.
200 The above description is what POSIX.1-2001 says, and seems to be followed on
201 all System\ V-like systems.
202 Linux kernels before 2.6.12 required the real or
203 effective user ID of the caller to match
204 the real user of the process \fIwho\fP (instead of its effective user ID).
205 Linux 2.6.12 and later require
206 the effective user ID of the caller to match
207 the real or effective user ID of the process \fIwho\fP.
208 All BSD-like systems (SunOS 4.1.3, Ultrix 4.2,
209 4.3BSD, FreeBSD 4.3, OpenBSD-2.5, ...) behave in the same
210 manner as Linux 2.6.12 and later.
212 .SS C library/kernel differences
213 Within the kernel, nice values are actually represented
214 using the range 40..1
215 (since negative numbers are error codes) and these are the values
221 The glibc wrapper functions for these system calls handle the
222 translations between the user-land and kernel representations
223 of the nice value according to the formula
224 .IR "unice\ =\ 20\ \-\ knice" .
225 (Thus, the kernel's 40..1 range corresponds to the
226 range \-20..19 as seen by user space.)
228 According to POSIX, the nice value is a per-process setting.
229 However, under the current Linux/NPTL implementation of POSIX threads,
230 the nice value is a per-thread attribute:
231 different threads in the same process can have different nice values.
232 Portable applications should avoid relying on the Linux behavior,
233 which may be made standards conformant in the future.
238 .BR capabilities (7),
241 .I Documentation/scheduler/sched\-nice\-design.txt
242 in the Linux kernel source tree (since Linux 2.6.23)