source: rtems/doc/posix1003.1/ch13.t @ c78be42

4.104.114.84.95
Last change on this file since c78be42 was 6984a19, checked in by Joel Sherrill <joel.sherrill@…>, on 03/17/98 at 18:50:14

Completed status pass on functions and data types.

  • Property mode set to 100644
File size: 2.5 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Execution Scheduling
10
11@section Scheduling Parameters
12
13@example
14struct sched_param, Type, Implemented
15@end example
16
17@section Scheduling Policies
18
19@subsection SCHED_FIFO
20
21@subsection SCHED_RR
22
23@subsection SCHED_OTHER
24
25@section Process Scheduling Functions
26
27@subsection Set Scheduling Parameters
28
29@example
30sched_setparam(), Function, Dummy Implementation
31@end example
32
33@subsection Get Scheduling Parameters
34
35@example
36sched_getparam(), Function, Dummy Implementation
37@end example
38
39@subsection Set Scheduling Policy and Scheduling Parameters
40
41@example
42sched_setscheduler(), Function, Dummy Implementation
43@end example
44
45@subsection Get Scheduling Policy
46
47@example
48sched_getscheduler(), Function, Dummy Implementation
49@end example
50
51@subsection Yield Processor
52
53@example
54sched_yield(), Function, Implemented
55@end example
56
57@subsection Get Scheduling Parameter Limits
58
59@example
60sched_get_priority_max(), Function, Implemented
61sched_get_priority_min(), Function, Implemented
62sched_get_priority_rr_get_interval(), Function, Implemented
63@end example
64
65@section Thread Scheduling
66
67@subsection Thread Scheduling Attributes
68
69@subsection Scheduling Contention Scope
70
71@subsection Scheduling Allocation Domain
72
73@subsection Scheduling Documentation
74
75@section Thread Scheduling Functions
76
77@subsection Thread Creation Scheduling Attributes
78
79@example
80pthread_attr_setscope(), Function, Implemented
81pthread_attr_getscope(), Function, Implemented
82pthread_attr_setinheritsched(), Function, Implemented
83pthread_attr_getinheritsched(), Function, Implemented
84pthread_attr_setschedpolicy(), Function, Implemented
85pthread_attr_getschedpolicy(), Function, Implemented
86pthread_attr_setschedparam(), Function, Implemented
87pthread_attr_getschedparam(), Function, Implemented
88@end example
89
90@subsection Dynamic Thread Scheduling Parameters Access
91
92@example
93pthread_setschedparam(), Function, Implemented
94pthread_getschedparam(), Function, Implemented
95@end example
96
97@section Synchronization Scheduling
98
99@subsection Mutex Initialization Scheduling Attributes
100
101@example
102pthread_mutexattr_setprotocol(), Function, Implemented
103pthread_mutexattr_getprotocol(), Function, Implemented
104pthread_mutexattr_setprioceiling(), Function, Implemented
105pthread_mutexattr_getprioceiling(), Function, Implemented
106@end example
107
108@subsection Change the Priority Ceiling of a Mutex
109
110@example
111pthread_mutex_setprioceiling(), Function, Implemented
112pthread_mutex_getprioceiling(), Function, Implemented
113@end example
114
Note: See TracBrowser for help on using the repository browser.