xref: /freebsd-14.2/lib/libc/sys/getpriority.2 (revision b2c76c41)
1.\" Copyright (c) 1980, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"     @(#)getpriority.2	8.1 (Berkeley) 6/4/93
29.\"
30.Dd June 4, 1993
31.Dt GETPRIORITY 2
32.Os
33.Sh NAME
34.Nm getpriority ,
35.Nm setpriority
36.Nd get/set program scheduling priority
37.Sh LIBRARY
38.Lb libc
39.Sh SYNOPSIS
40.In sys/time.h
41.In sys/resource.h
42.Ft int
43.Fn getpriority "int which" "int who"
44.Ft int
45.Fn setpriority "int which" "int who" "int prio"
46.Sh DESCRIPTION
47The scheduling
48priority of the process, process group, or user, as indicated by
49.Fa which
50and
51.Fa who
52is obtained with the
53.Fn getpriority
54system call and set with the
55.Fn setpriority
56system call.
57The
58.Fa which
59argument
60is one of
61.Dv PRIO_PROCESS ,
62.Dv PRIO_PGRP ,
63or
64.Dv PRIO_USER ,
65and
66.Fa who
67is interpreted relative to
68.Fa which
69(a process identifier for
70.Dv PRIO_PROCESS ,
71process group
72identifier for
73.Dv PRIO_PGRP ,
74and a user ID for
75.Dv PRIO_USER ) .
76A zero value of
77.Fa who
78denotes the current process, process group, or user.
79The
80.Fa prio
81argument
82is a value in the range -20 to 20.
83The default priority is 0;
84lower priorities cause more favorable scheduling.
85.Pp
86The
87.Fn getpriority
88system call returns the highest priority (lowest numerical value)
89enjoyed by any of the specified processes.
90The
91.Fn setpriority
92system call sets the priorities of all of the specified processes
93to the specified value.
94Only the super-user may lower priorities.
95.Sh RETURN VALUES
96Since
97.Fn getpriority
98can legitimately return the value -1, it is necessary
99to clear the external variable
100.Va errno
101prior to the
102call, then check it afterward to determine
103if a -1 is an error or a legitimate value.
104.Pp
105.Rv -std setpriority
106.Sh ERRORS
107The
108.Fn getpriority
109and
110.Fn setpriority
111system calls
112will fail if:
113.Bl -tag -width Er
114.It Bq Er ESRCH
115No process was located using the
116.Fa which
117and
118.Fa who
119values specified.
120.It Bq Er EINVAL
121The
122.Fa which
123argument
124was not one of
125.Dv PRIO_PROCESS ,
126.Dv PRIO_PGRP ,
127or
128.Dv PRIO_USER .
129.El
130.Pp
131In addition to the errors indicated above,
132.Fn setpriority
133will fail if:
134.Bl -tag -width Er
135.It Bq Er EPERM
136A process was located, but neither its effective nor real user
137ID matched the effective user ID of the caller.
138.It Bq Er EACCES
139A non super-user attempted to lower a process priority.
140.El
141.Sh SEE ALSO
142.Xr nice 1 ,
143.Xr fork 2 ,
144.Xr renice 8
145.Sh HISTORY
146The
147.Fn getpriority
148system call appeared in
149.Bx 4.2 .
150