1SCHED_GET_PRIORITY_MAX(3P) POSIX Programmer's ManualSCHED_GET_PRIORITY_MAX(3P)
2
3
4
6 This manual page is part of the POSIX Programmer's Manual. The Linux
7 implementation of this interface may differ (consult the corresponding
8 Linux manual page for details of Linux behavior), or the interface may
9 not be implemented on Linux.
10
12 sched_get_priority_max, sched_get_priority_min - get priority limits
13 (REALTIME)
14
16 #include <sched.h>
17
18 int sched_get_priority_max(int policy);
19 int sched_get_priority_min(int policy);
20
21
23 The sched_get_priority_max() and sched_get_priority_min() functions
24 shall return the appropriate maximum or minimum, respectively, for the
25 scheduling policy specified by policy.
26
27 The value of policy shall be one of the scheduling policy values
28 defined in <sched.h>.
29
31 If successful, the sched_get_priority_max() and sched_get_prior‐
32 ity_min() functions shall return the appropriate maximum or minimum
33 values, respectively. If unsuccessful, they shall return a value of -1
34 and set errno to indicate the error.
35
37 The sched_get_priority_max() and sched_get_priority_min() functions
38 shall fail if:
39
40 EINVAL The value of the policy parameter does not represent a defined
41 scheduling policy.
42
43
44 The following sections are informative.
45
47 None.
48
50 None.
51
53 None.
54
56 None.
57
59 sched_getparam(), sched_setparam(), sched_getscheduler(),
60 sched_rr_get_interval(), sched_setscheduler(), the Base Definitions
61 volume of IEEE Std 1003.1-2001, <sched.h>
62
64 Portions of this text are reprinted and reproduced in electronic form
65 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
66 -- Portable Operating System Interface (POSIX), The Open Group Base
67 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
68 Electrical and Electronics Engineers, Inc and The Open Group. In the
69 event of any discrepancy between this version and the original IEEE and
70 The Open Group Standard, the original IEEE and The Open Group Standard
71 is the referee document. The original Standard can be obtained online
72 at http://www.opengroup.org/unix/online.html .
73
74
75
76IEEE/The Open Group 2003 SCHED_GET_PRIORITY_MAX(3P)