summaryrefslogtreecommitdiffstats
path: root/man-pages-posix-2017/man3p/getpriority.3p
blob: cf042ef7411267b5c51fc1191175441d1e41838f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
'\" et
.TH GETPRIORITY "3P" 2017 "IEEE/The Open Group" "POSIX Programmer's Manual"
.\"
.SH PROLOG
This manual page is part of the POSIX Programmer's Manual.
The Linux implementation of this interface may differ (consult
the corresponding Linux manual page for details of Linux behavior),
or the interface may not be implemented on Linux.
.\"
.SH NAME
getpriority,
setpriority
\(em get and set the nice value
.SH SYNOPSIS
.LP
.nf
#include <sys/resource.h>
.P
int getpriority(int \fIwhich\fP, id_t \fIwho\fP);
int setpriority(int \fIwhich\fP, id_t \fIwho\fP, int \fIvalue\fP);
.fi
.SH DESCRIPTION
The
\fIgetpriority\fR()
function shall obtain the nice value of a process, process group, or
user. The
\fIsetpriority\fR()
function shall set the nice value of a process, process group, or user
to
.IR value +\c
{NZERO}.
.P
Target processes are specified by the values of the
.IR which
and
.IR who
arguments. The
.IR which
argument may be one of the following values: PRIO_PROCESS, PRIO_PGRP,
or PRIO_USER, indicating that the
.IR who
argument
is to be interpreted as a process ID, a process group ID, or an
effective user ID, respectively. A 0 value for the
.IR who
argument specifies the current process, process group, or user.
.P
The nice value set with
\fIsetpriority\fR()
shall be applied to the process. If the process is multi-threaded,
the nice value shall affect all system scope threads in the process.
.P
If more than one process is specified,
\fIgetpriority\fR()
shall return value
{NZERO}
less than the lowest nice value pertaining to any of the specified
processes, and
\fIsetpriority\fR()
shall set the nice values of all of the specified processes to
.IR value +\c
{NZERO}.
.P
The default nice value is
{NZERO};
lower nice values shall cause more favorable scheduling. While the
range of valid nice values is [0,{NZERO}*2\-1], implementations may
enforce more restrictive limits. If
.IR value +\c
{NZERO}
is less than the system's lowest supported nice value,
\fIsetpriority\fR()
shall set the nice value to the lowest supported value; if
.IR value +\c
{NZERO}
is greater than the system's highest supported nice value,
\fIsetpriority\fR()
shall set the nice value to the highest supported value.
.P
Only a process with appropriate privileges can lower its nice value.
.P
Any processes or threads using SCHED_FIFO or SCHED_RR shall be
unaffected by a call to
\fIsetpriority\fR().
This is not considered an error. A process which subsequently reverts
to SCHED_OTHER need not have its priority affected by such a
\fIsetpriority\fR()
call.
.P
The effect of changing the nice value may vary depending on the
process-scheduling algorithm in effect.
.P
Since
\fIgetpriority\fR()
can return the value \-1 upon successful completion, it is necessary to
set
.IR errno
to 0 prior to a call to
\fIgetpriority\fR().
If
\fIgetpriority\fR()
returns the value \-1, then
.IR errno
can be checked to see if an error occurred or if the value is a
legitimate nice value.
.SH "RETURN VALUE"
Upon successful completion,
\fIgetpriority\fR()
shall return an integer in the range \-{NZERO} to
{NZERO}\-1.
Otherwise, \-1 shall be returned and
.IR errno
set to indicate the error.
.P
Upon successful completion,
\fIsetpriority\fR()
shall return 0; otherwise, \-1 shall be returned and
.IR errno
set to indicate the error.
.br
.SH ERRORS
The
\fIgetpriority\fR()
and
\fIsetpriority\fR()
functions shall fail if:
.TP
.BR ESRCH
No process could be located using the
.IR which
and
.IR who
argument values specified.
.TP
.BR EINVAL
The value of the
.IR which
argument was not recognized, or the value of the
.IR who
argument is not a valid process ID, process group ID, or user ID.
.P
In addition,
\fIsetpriority\fR()
may fail if:
.TP
.BR EPERM
A process was located, but neither the real nor effective user ID of
the executing process match the effective user ID of the process whose
nice value is being changed.
.TP
.BR EACCES
A request was made to change the nice value to a lower numeric value
and the current process does not have appropriate privileges.
.LP
.IR "The following sections are informative."
.SH EXAMPLES
.SS "Using getpriority(\|)"
.P
The following example returns the current scheduling priority for the
process ID returned by the call to
\fIgetpid\fR().
.sp
.RS 4
.nf

#include <sys/resource.h>
\&...
int which = PRIO_PROCESS;
id_t pid;
int ret;
.P
pid = getpid();
ret = getpriority(which, pid);
.fi
.P
.RE
.SS "Using setpriority(\|)"
.P
The following example sets the priority for the current process ID to
\-20.
.sp
.RS 4
.nf

#include <sys/resource.h>
\&...
int which = PRIO_PROCESS;
id_t pid;
int priority = -20;
int ret;
.P
pid = getpid();
ret = setpriority(which, pid, priority);
.fi
.P
.RE
.SH "APPLICATION USAGE"
The
\fIgetpriority\fR()
and
\fIsetpriority\fR()
functions work with an offset nice value (nice value \-{NZERO}). The
nice value is in the range [0,2*{NZERO} \-1], while the return value
for
\fIgetpriority\fR()
and the third parameter for
\fIsetpriority\fR()
are in the range [\-{NZERO},{NZERO} \-1].
.SH RATIONALE
None.
.SH "FUTURE DIRECTIONS"
None.
.SH "SEE ALSO"
.IR "\fInice\fR\^(\|)",
.IR "\fIsched_get_priority_max\fR\^(\|)",
.IR "\fIsched_setscheduler\fR\^(\|)"
.P
The Base Definitions volume of POSIX.1\(hy2017,
.IR "\fB<sys_resource.h>\fP"
.\"
.SH COPYRIGHT
Portions of this text are reprinted and reproduced in electronic form
from IEEE Std 1003.1-2017, Standard for Information Technology
-- Portable Operating System Interface (POSIX), The Open Group Base
Specifications Issue 7, 2018 Edition,
Copyright (C) 2018 by the Institute of
Electrical and Electronics Engineers, Inc and The Open Group.
In the event of any discrepancy between this version and the original IEEE and
The Open Group Standard, the original IEEE and The Open Group Standard
is the referee document. The original Standard can be obtained online at
http://www.opengroup.org/unix/online.html .
.PP
Any typographical or formatting errors that appear
in this page are most likely
to have been introduced during the conversion of the source files to
man page format. To report such errors, see
https://www.kernel.org/doc/man-pages/reporting_bugs.html .