1 .\" Copyright (C) 2014 Michael Kerrisk <mtk.manpages@gmail.com>
2 .\" and Copyright (C) 2014 Peter Zijlstra <peterz@infradead.org>
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date. The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein. The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .TH SCHED_SETATTR 2 2021-03-22 "Linux" "Linux Programmer's Manual"
28 sched_setattr, sched_getattr \-
29 set and get scheduling policy and attributes
32 .BR "#include <sched.h>" " /* Definition of " SCHED_* " constants */"
33 .BR "#include <sys/syscall.h>" " /* Definition of " SYS_* " constants */"
34 .B #include <unistd.h>
36 .BI "int syscall(SYS_sched_setattr, pid_t " pid ", struct sched_attr *" attr ,
37 .BI " unsigned int " flags );
38 .BI "int syscall(SYS_sched_getattr, pid_t " pid ", struct sched_attr *" attr ,
39 .BI " unsigned int " size ", unsigned int " flags );
41 .\" FIXME . Add feature test macro requirements
44 glibc provides no wrappers for these system calls,
45 necessitating the use of
51 system call sets the scheduling policy and
52 associated attributes for the thread whose ID is specified in
57 the scheduling policy and attributes of the calling thread will be set.
59 Currently, Linux supports the following "normal"
60 (i.e., non-real-time) scheduling policies as values that may be specified in
64 the standard round-robin time-sharing policy;
65 .\" In the 2.6 kernel sources, SCHED_OTHER is actually called
69 for "batch" style execution of processes; and
74 low priority background jobs.
76 Various "real-time" policies are also supported,
77 for special time-critical applications that need precise control over
78 the way in which runnable threads are selected for execution.
79 For the rules governing when a process may use these policies, see
81 The real-time policies that may be specified in
86 a first-in, first-out policy; and
91 Linux also provides the following policy:
94 a deadline scheduling policy; see
100 argument is a pointer to a structure that defines
101 the new scheduling policy and attributes for the specified thread.
102 This structure has the following form:
107 u32 size; /* Size of this structure */
108 u32 sched_policy; /* Policy (SCHED_*) */
109 u64 sched_flags; /* Flags */
110 s32 sched_nice; /* Nice value (SCHED_OTHER,
112 u32 sched_priority; /* Static priority (SCHED_FIFO,
114 /* Remaining fields are for SCHED_DEADLINE */
124 structure are as follows:
127 This field should be set to the size of the structure in bytes, as in
128 .IR "sizeof(struct sched_attr)" .
129 If the provided structure is smaller than the kernel structure,
130 any additional fields are assumed to be '0'.
131 If the provided structure is larger than the kernel structure,
132 the kernel verifies that all additional fields are 0;
139 to contain the size of the kernel structure.
141 The above behavior when the size of the user-space
143 structure does not match the size of the kernel structure
144 allows for future extensibility of the interface.
145 Malformed applications that pass oversize structures
146 won't break in the future if the size of the kernel
148 structure is increased.
150 it could also allow applications that know about a larger user-space
152 structure to determine whether they are running on an older kernel
153 that does not support the larger structure.
156 This field specifies the scheduling policy, as one of the
161 This field contains zero or more of the following flags
162 that are ORed together to control scheduling behavior:
165 .BR SCHED_FLAG_RESET_ON_FORK
168 do not inherit privileged scheduling policies.
173 .BR SCHED_FLAG_RECLAIM " (since Linux 4.13)"
174 .\" 2d4283e9d583a3ee8cfb1cbb9c1270614df4c29d
177 thread to reclaim bandwidth unused by other real-time threads.
178 .\" Bandwidth reclaim is done via the GRUB algorithm; see
179 .\" Documentation/scheduler/sched-deadline.txt
181 .BR SCHED_FLAG_DL_OVERRUN " (since Linux 4.16)"
182 .\" commit 34be39305a77b8b1ec9f279163c7cdb6cc719b91
183 This flag allows an application to get informed about run-time overruns in
186 Such overruns may be caused by (for example) coarse execution time accounting
187 or incorrect parameter assignment.
188 Notification takes the form of a
190 signal which is generated on each overrun.
198 rather than thread-directed.
199 This is probably a bug.
202 is being used to set a per-thread attribute.
203 On the other hand, if the process-directed signal is delivered to
204 a thread inside the process other than the one that had a run-time overrun,
205 the application has no way of knowing which thread overran.
209 This field specifies the nice value to be set when specifying
215 The nice value is a number in the range \-20 (high priority)
216 to +19 (low priority); see
220 This field specifies the static priority to be set when specifying
226 The allowed range of priorities for these policies can be determined using
227 .BR sched_get_priority_min (2)
229 .BR sched_get_priority_max (2).
230 For other policies, this field must be specified as 0.
233 This field specifies the "Runtime" parameter for deadline scheduling.
234 The value is expressed in nanoseconds.
235 This field, and the next two fields,
238 scheduling; for further details, see
242 This field specifies the "Deadline" parameter for deadline scheduling.
243 The value is expressed in nanoseconds.
246 This field specifies the "Period" parameter for deadline scheduling.
247 The value is expressed in nanoseconds.
251 argument is provided to allow for future extensions to the interface;
252 in the current implementation it must be specified as 0.
258 system call fetches the scheduling policy and the
259 associated attributes for the thread whose ID is specified in
264 the scheduling policy and attributes of the calling thread
269 argument should be set to the size of the
271 structure as known to user space.
272 The value must be at least as large as the size of the initially published
274 structure, or the call fails with the error
277 The retrieved scheduling attributes are placed in the fields of the
279 structure pointed to by
287 If the caller-provided
289 buffer is larger than the kernel's
292 the additional bytes in the user-space structure are not touched.
293 If the caller-provided structure is smaller than the kernel
295 structure, the kernel will silently not return any values which would be stored
296 outside the provided space.
298 .BR sched_setattr (),
299 these semantics allow for future extensibility of the interface.
303 argument is provided to allow for future extensions to the interface;
304 in the current implementation it must be specified as 0.
311 On error, \-1 is returned, and
313 is set to indicate the error.
318 can both fail for the following reasons:
329 The thread whose ID is
335 can fail for the following reasons:
338 The buffer specified by
346 is invalid; that is, it is smaller than the initial version of the
348 structure (48 bytes) or larger than the system page size.
352 can fail for the following reasons:
355 The buffer specified by
359 is larger than the kernel structure,
360 and one or more of the excess bytes is nonzero.
364 admission control failure, see
369 is not one of the recognized policies;
371 contains a flag other than
372 .BR SCHED_FLAG_RESET_ON_FORK ;
374 .I attr.sched_priority
379 and the deadline scheduling parameters in
384 The caller does not have appropriate privileges.
387 The CPU affinity mask of the thread specified by
389 does not include all CPUs in the system
391 .BR sched_setaffinity (2)).
393 These system calls first appeared in Linux 3.14.
394 .\" FIXME . Add glibc version
396 These system calls are nonstandard Linux extensions.
398 Glibc does not provide wrappers for these system calls; call them using
402 provides a superset of the functionality of
403 .BR sched_setscheduler (2),
404 .BR sched_setparam (2),
406 and (other than the ability to set the priority of all processes
407 belonging to a specified user or all processes in a specified group)
411 provides a superset of the functionality of
412 .BR sched_getscheduler (2),
413 .BR sched_getparam (2),
417 In Linux versions up to
418 .\" FIXME . patch sent to Peter Zijlstra
421 failed with the error
425 for the case described in ERRORS.
427 In Linux versions up to 5.3,
429 failed with the error
433 structure was larger than the
435 passed by user space.
436 .\" In Linux versions up to up 3.15,
437 .\" FIXME . patch from Peter Zijlstra pending
438 .\" .BR sched_setattr ()
439 .\" allowed a negative
440 .\" .I attr.sched_policy
447 .BR sched_get_priority_max (2),
448 .BR sched_get_priority_min (2),
449 .BR sched_getaffinity (2),
450 .BR sched_getparam (2),
451 .BR sched_getscheduler (2),
452 .BR sched_rr_get_interval (2),
453 .BR sched_setaffinity (2),
454 .BR sched_setparam (2),
455 .BR sched_setscheduler (2),
458 .BR pthread_getschedparam (3),
459 .BR pthread_setschedparam (3),
460 .BR pthread_setschedprio (3),
461 .BR capabilities (7),