Remove advertising header from man pages.
[dragonfly.git] / lib / libc / sys / getpriority.2
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 .\" 4. 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 .\" $FreeBSD: src/lib/libc/sys/getpriority.2,v 1.4.2.5 2001/12/14 18:34:00 ru Exp $
30 .\" $DragonFly: src/lib/libc/sys/getpriority.2,v 1.3 2008/05/01 23:36:43 swildner Exp $
31 .\"
32 .Dd June 4, 1993
33 .Dt GETPRIORITY 2
34 .Os
35 .Sh NAME
36 .Nm getpriority ,
37 .Nm setpriority
38 .Nd get/set program scheduling priority
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In sys/time.h
43 .In sys/resource.h
44 .Ft int
45 .Fn getpriority "int which" "int who"
46 .Ft int
47 .Fn setpriority "int which" "int who" "int prio"
48 .Sh DESCRIPTION
49 The scheduling
50 priority of the process, process group, or user, as indicated by
51 .Fa which
52 and
53 .Fa who
54 is obtained with the
55 .Fn getpriority
56 call and set with the
57 .Fn setpriority
58 call.
59 .Fa Which
60 is one of
61 .Dv PRIO_PROCESS ,
62 .Dv PRIO_PGRP ,
63 or
64 .Dv PRIO_USER ,
65 and
66 .Fa who
67 is interpreted relative to
68 .Fa which
69 (a process identifier for
70 .Dv PRIO_PROCESS ,
71 process group
72 identifier for
73 .Dv PRIO_PGRP ,
74 and a user ID for
75 .Dv PRIO_USER ) .
76 A zero value of
77 .Fa who
78 denotes the current process, process group, or user.
79 .Fa Prio
80 is a value in the range -20 to 20.  The default priority is 0;
81 lower priorities cause more favorable scheduling.
82 .Pp
83 The
84 .Fn getpriority
85 call returns the highest priority (lowest numerical value)
86 enjoyed by any of the specified processes.  The
87 .Fn setpriority
88 call sets the priorities of all of the specified processes
89 to the specified value.  Only the super-user may lower priorities.
90 .Sh RETURN VALUES
91 Since
92 .Fn getpriority
93 can legitimately return the value -1, it is necessary
94 to clear the external variable
95 .Va errno
96 prior to the
97 call, then check it afterward to determine
98 if a -1 is an error or a legitimate value.
99 .Pp
100 .Rv -std setpriority
101 .Sh ERRORS
102 .Fn Getpriority
103 and
104 .Fn setpriority
105 will fail if:
106 .Bl -tag -width Er
107 .It Bq Er ESRCH
108 No process was located using the
109 .Fa which
110 and
111 .Fa who
112 values specified.
113 .It Bq Er EINVAL
114 .Fa Which
115 was not one of
116 .Dv PRIO_PROCESS ,
117 .Dv PRIO_PGRP ,
118 or
119 .Dv PRIO_USER .
120 .El
121 .Pp
122 In addition to the errors indicated above,
123 .Fn setpriority
124 will fail if:
125 .Bl -tag -width Er
126 .It Bq Er EPERM
127 A process was located, but neither its effective nor real user
128 ID matched the effective user ID of the caller.
129 .It Bq Er EACCES
130 A non super-user attempted to lower a process priority.
131 .El
132 .Sh SEE ALSO
133 .Xr nice 1 ,
134 .Xr fork 2 ,
135 .Xr renice 8
136 .Sh HISTORY
137 The
138 .Fn getpriority
139 function call appeared in
140 .Bx 4.2 .