1POSIX_SPAWNATTR_GETSCHEDPOLIPCOYS(I3XP)Programmer'sPOMSaInXu_aSlPAWNATTR_GETSCHEDPOLICY(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 posix_spawnattr_getschedpolicy, posix_spawnattr_setschedpolicy - get
13 and set the spawn-schedpolicy attribute of a spawn attributes object
14 (ADVANCED REALTIME)
15
17 #include <spawn.h>
18 #include <sched.h>
19
20 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *
21 restrict attr, int *restrict schedpolicy);
22 int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr,
23 int schedpolicy);
24
25
27 The posix_spawnattr_getschedpolicy() function shall obtain the value of
28 the spawn-schedpolicy attribute from the attributes object referenced
29 by attr.
30
31 The posix_spawnattr_setschedpolicy() function shall set the spawn-
32 schedpolicy attribute in an initialized attributes object referenced by
33 attr.
34
35 The spawn-schedpolicy attribute represents the scheduling policy to be
36 assigned to the new process image in a spawn operation (if
37 POSIX_SPAWN_SETSCHEDULER is set in the spawn-flags attribute). The
38 default value of this attribute is unspecified.
39
41 Upon successful completion, posix_spawnattr_getschedpolicy() shall
42 return zero and store the value of the spawn-schedpolicy attribute of
43 attr into the object referenced by the schedpolicy parameter; other‐
44 wise, an error number shall be returned to indicate the error.
45
46 Upon successful completion, posix_spawnattr_setschedpolicy() shall
47 return zero; otherwise, an error number shall be returned to indicate
48 the error.
49
51 These functions may fail if:
52
53 EINVAL The value specified by attr is invalid.
54
55
56 The posix_spawnattr_setschedpolicy() function may fail if:
57
58 EINVAL The value of the attribute being set is not valid.
59
60
61 The following sections are informative.
62
64 None.
65
67 These functions are part of the Spawn and Process Scheduling options
68 and need not be provided on all implementations.
69
71 None.
72
74 None.
75
77 posix_spawn(), posix_spawnattr_destroy(), posix_spawnattr_init(),
78 posix_spawnattr_getsigdefault(), posix_spawnattr_getflags(),
79 posix_spawnattr_getpgroup(), posix_spawnattr_getschedparam(),
80 posix_spawnattr_getsigmask(), posix_spawnattr_setsigdefault(),
81 posix_spawnattr_setflags(), posix_spawnattr_setpgroup(), posix_spaw‐
82 nattr_setschedparam(), posix_spawnattr_setsigmask(), posix_spawnp(),
83 the Base Definitions volume of IEEE Std 1003.1-2001, <sched.h>,
84 <spawn.h>
85
87 Portions of this text are reprinted and reproduced in electronic form
88 from IEEE Std 1003.1, 2003 Edition, Standard for Information Technology
89 -- Portable Operating System Interface (POSIX), The Open Group Base
90 Specifications Issue 6, Copyright (C) 2001-2003 by the Institute of
91 Electrical and Electronics Engineers, Inc and The Open Group. In the
92 event of any discrepancy between this version and the original IEEE and
93 The Open Group Standard, the original IEEE and The Open Group Standard
94 is the referee document. The original Standard can be obtained online
95 at http://www.opengroup.org/unix/online.html .
96
97
98
99IEEE/The Open Group 2003 POSIX_SPAWNATTR_GETSCHEDPOLICY(3P)