summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch13.t
blob: d39321c5422034bedef99a4259bb563bbaf30833 (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
@c
@c  COPYRIGHT (c) 1988-1998.
@c  On-Line Applications Research Corporation (OAR).
@c  All rights reserved.
@c
@c  $Id$
@c

@chapter Execution Scheduling

@section Scheduling Parameters

@section Scheduling Policies

@subsection SCHED_FIFO

@subsection SCHED_RR

@subsection SCHED_OTHER

@section Process Scheduling Functions

@subsection Set Scheduling Parameters

@example
sched_setparam()
@end example

@subsection Get Scheduling Parameters

@example
sched_getparam()
@end example

@subsection Set Scheduling Policy and Scheduling Parameters

@example
sched_setscheduler()
@end example

@subsection Get Scheduling Policy

@example
sched_getscheduler()
@end example

@subsection Yield Processor

@example
sched_yield()
@end example

@subsection Get Scheduling Parameter Limits

@example
sched_get_priority_max()
sched_get_priority_min()
sched_get_priority_rr_get_interval()
@end example

@section Thread Scheduling

@subsection Thread Scheduling Attributes

@subsection Scheduling Contention Scope

@subsection Scheduling Allocation Domain

@subsection Scheduling Documentation

@section Thread Scheduling Functions

@subsection Thread Creation Scheduling Attributes

@example
pthread_attr_setscope()
pthread_attr_getscope()
pthread_attr_setinheritsched()
pthread_attr_getinheritsched()
pthread_attr_setschedpolicy()
pthread_attr_getschedpolicy()
pthread_attr_setschedparam()
pthread_attr_getschedparam()
@end example

@subsection Dynamic Thread Scheduling Parameters Access

@example
pthread_setschedparam()
pthread_getschedparam()
@end example

@section Synchronization Scheduling

@subsection Mutex Initialization Scheduling Attributes

@example
pthread_mutexattr_setprotocol()
pthread_mutexattr_getprotocol()
pthread_mutexattr_setpriceiling()
pthread_mutexattr_getpriceiling()
@end example

@subsection Change the Priority Ceiling of a Mutex

@example
pthread_mutex_setprioceiling()
pthread_mutex_getprioceiling()
@end example