Changeset e2c8e2c in rtems
- Timestamp:
- 07/01/99 23:05:07 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 68f54e1
- Parents:
- 1c4d8f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix_users/sched.t
r1c4d8f0 re2c8e2c 16 16 17 17 @itemize @bullet 18 @item @code{sched_get_priority_min} - 19 @item @code{sched_get_priority_max} - 20 @item @code{sched_rr_get_interval} - 21 @item @code{sched_yield} - 18 @item @code{sched_get_priority_min} - Get Minimum Priority Value 19 @item @code{sched_get_priority_max} - Get Maximum Priority Value 20 @item @code{sched_rr_get_interval} - Get Timeslicing Quantum 21 @item @code{sched_yield} - Yield the Processor 22 22 @end itemize 23 23 … … 27 27 28 28 In the RTEMS implementation of the POSIX API, the priorities range from 29 the low priority of sched_get_priority_min()to the highest priority of30 sched_get_priority_max(). Numerically higher values represent higher29 the low priority of @code{sched_get_priority_min()} to the highest priority of 30 @code{sched_get_priority_max()}. Numerically higher values represent higher 31 31 priorities. 32 32 … … 71 71 72 72 @page 73 @subsection sched_get_priority_min 73 @subsection sched_get_priority_min - Get Minimum Priority Value 74 74 75 75 @subheading CALLING SEQUENCE: … … 95 95 @subheading DESCRIPTION: 96 96 97 This routine return the minimum (numerically and logically lowest) priority 98 for the specified @code{policy}. 99 97 100 @subheading NOTES: 98 101 102 NONE 103 99 104 @page 100 @subsection sched_get_priority_max 105 @subsection sched_get_priority_max - Get Maximum Priority Value 101 106 102 107 @subheading CALLING SEQUENCE: … … 122 127 @subheading DESCRIPTION: 123 128 129 This routine return the maximum (numerically and logically highest) priority 130 for the specified @code{policy}. 131 124 132 @subheading NOTES: 125 133 134 NONE 135 126 136 @page 127 @subsection sched_rr_get_interval 137 @subsection sched_rr_get_interval - Get Timeslicing Quantum 128 138 129 139 @subheading CALLING SEQUENCE: … … 153 163 @subheading DESCRIPTION: 154 164 165 This routine returns the length of the timeslice quantum in the 166 @code{interval} parameter for the specified @code{pid}. 167 155 168 @subheading NOTES: 156 169 170 The @code{pid} argument should be 0 to indicate the calling process. 171 157 172 @page 158 @subsection sched_yield 173 @subsection sched_yield - Yield the Processor 159 174 160 175 @subheading CALLING SEQUENCE: … … 172 187 @subheading DESCRIPTION: 173 188 189 This call forces the calling thread to yield the processor to another 190 thread. Normally this is used to implement voluntary round-robin 191 task scheduling. 192 174 193 @subheading NOTES: 175 194 195 NONE
Note: See TracChangeset
for help on using the changeset viewer.