Changeset a518cc11 in rtems
- Timestamp:
- 10/11/99 20:24:37 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a7a33cc3
- Parents:
- ffce9b39
- Location:
- doc/posix_users
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix_users/cancel.t
rffce9b39 ra518cc11 17 17 18 18 @itemize @bullet 19 @item @code{pthread_cancel} - 20 @item @code{pthread_setcancelstate} - 21 @item @code{pthread_setcanceltype} - 22 @item @code{pthread_testcancel} - 23 @item @code{pthread_cleanup_push} - 19 @item @code{pthread_cancel} - Cancel Execution of a Thread 20 @item @code{pthread_setcancelstate} - Set Cancelability State 21 @item @code{pthread_setcanceltype} - Set Cancelability Type 22 @item @code{pthread_testcancel} - Create Cancellation Point 23 @item @code{pthread_cleanup_push} - Establish Cancellation Handler 24 @item @code{pthread_cleanup_pop} - Remove Cancellation Handler 24 25 @end itemize 25 26 … … 40 41 41 42 @page 42 @subsection pthread_cancel - 43 @subsection pthread_cancel - Cancel Execution of a Thread 43 44 44 45 @subheading CALLING SEQUENCE: … … 67 68 68 69 @page 69 @subsection pthread_setcancelstate - 70 @subsection pthread_setcancelstate - Set Cancelability State 70 71 71 72 @subheading CALLING SEQUENCE: … … 94 95 95 96 @page 96 @subsection pthread_setcanceltype - 97 @subsection pthread_setcanceltype - Set Cancelability Type 97 98 98 99 @subheading CALLING SEQUENCE: … … 121 122 122 123 @page 123 @subsection pthread_testcancel - 124 @subsection pthread_testcancel - Create Cancellation Point 124 125 125 126 @subheading CALLING SEQUENCE: … … 148 149 149 150 @page 150 @subsection pthread_cleanup_push - 151 @subsection pthread_cleanup_push - Establish Cancellation Handler 151 152 152 153 @subheading CALLING SEQUENCE: … … 174 175 @subheading NOTES: 175 176 177 @page 178 @subsection pthread_cleanup_pop - Remove Cancellation Handler 179 180 @subheading CALLING SEQUENCE: 181 182 @ifset is-C 183 @example 184 int pthread_cleanup_push( 185 ); 186 @end example 187 @end ifset 188 189 @ifset is-Ada 190 @end ifset 191 192 @subheading STATUS CODES: 193 194 @table @b 195 @item E 196 The 197 198 @end table 199 200 @subheading DESCRIPTION: 201 202 @subheading NOTES: 203 -
doc/posix_users/clock.t
rffce9b39 ra518cc11 16 16 17 17 @itemize @bullet 18 @item @code{clock_gettime} - 19 @item @code{clock_settime} - 20 @item @code{clock_getres} - 18 @item @code{clock_gettime} - Obtain Time of Day 19 @item @code{clock_settime} - Set Time of Day 20 @item @code{clock_getres} - Get Clock Resolution 21 21 @item @code{sleep} - Delay Process Execution 22 @item @code{nanosleep} - 22 @item @code{nanosleep} - Delay with High Resolution 23 23 @item @code{gettimeofday} - Get the Time of Day 24 24 @item @code{time} - Get time in seconds … … 40 40 and status codes. 41 41 42 @subsection clock_gettime - 42 @subsection clock_gettime -Obtain Time of Day 43 43 44 44 @subheading CALLING SEQUENCE: … … 72 72 73 73 @page 74 @subsection clock_settime - 74 @subsection clock_settime - Set Time of Day 75 75 76 76 @subheading CALLING SEQUENCE: … … 108 108 109 109 @page 110 @subsection clock_getres - 110 @subsection clock_getres - Get Clock Resolution 111 111 112 112 @subheading CALLING SEQUENCE: … … 167 167 168 168 @page 169 @subsection nanosleep - 169 @subsection nanosleep - Delay with High Resolution 170 170 171 171 @subheading CALLING SEQUENCE: -
doc/posix_users/cond.t
rffce9b39 ra518cc11 16 16 17 17 @itemize @bullet 18 @item @code{pthread_condattr_init} - 19 @item @code{pthread_condattr_destroy} - 20 @item @code{pthread_condattr_setpshared} - 21 @item @code{pthread_condattr_getpshared} - 22 @item @code{pthread_cond_init} - 23 @item @code{pthread_cond_destroy} - 24 @item @code{pthread_cond_signal} - 25 @item @code{pthread_cond_broadcast} - 26 @item @code{pthread_cond_wait} - 27 @item @code{pthread_cond_timedwait} - 18 @item @code{pthread_condattr_init} - Initialize a Condition Variable Attribute Set 19 @item @code{pthread_condattr_destroy} - Destroy a Condition Variable Attribute Set 20 @item @code{pthread_condattr_setpshared} - Set Process Shared Attribute 21 @item @code{pthread_condattr_getpshared} - Get Process Shared Attribute 22 @item @code{pthread_cond_init} - Initialize a Condition Variable 23 @item @code{pthread_cond_destroy} - Destroy a Condition Variable 24 @item @code{pthread_cond_signal} - Signal a Condition Variable 25 @item @code{pthread_cond_broadcast} - Broadcast a Condition Variable 26 @item @code{pthread_cond_wait} - Wait on a Condition Variable 27 @item @code{pthread_cond_timedwait} - With with Timeout a Condition Variable 28 28 @end itemize 29 29 … … 44 44 45 45 @page 46 @subsection pthread_condattr_init - 46 @subsection pthread_condattr_init - Initialize a Condition Variable Attribute Set 47 47 48 48 @subheading CALLING SEQUENCE: … … 69 69 70 70 @page 71 @subsection pthread_condattr_destroy - 71 @subsection pthread_condattr_destroy - Destroy a Condition Variable Attribute Set 72 72 73 73 @subheading CALLING SEQUENCE: … … 93 93 94 94 @page 95 @subsection pthread_condattr_setpshared - 95 @subsection pthread_condattr_setpshared - Set Process Shared Attribute 96 96 97 97 @subheading CALLING SEQUENCE: … … 119 119 120 120 @page 121 @subsection pthread_condattr_getpshared - 121 @subsection pthread_condattr_getpshared - Get Process Shared Attribute 122 122 123 123 @subheading CALLING SEQUENCE: … … 146 146 147 147 @page 148 @subsection pthread_cond_init - 148 @subsection pthread_cond_init - Initialize a Condition Variable 149 149 150 150 @subheading CALLING SEQUENCE: … … 181 181 182 182 @page 183 @subsection pthread_cond_destroy - 183 @subsection pthread_cond_destroy - Destroy a Condition Variable 184 184 185 185 @subheading CALLING SEQUENCE: … … 208 208 209 209 @page 210 @subsection pthread_cond_signal - 210 @subsection pthread_cond_signal - Signal a Condition Variable 211 211 212 212 @subheading CALLING SEQUENCE: … … 235 235 236 236 @page 237 @subsection pthread_cond_broadcast - 237 @subsection pthread_cond_broadcast - Broadcast a Condition Variable 238 238 239 239 @subheading CALLING SEQUENCE: … … 262 262 263 263 @page 264 @subsection pthread_cond_wait - 264 @subsection pthread_cond_wait - Wait on a Condition Variable 265 265 266 266 @subheading CALLING SEQUENCE: … … 290 290 291 291 @page 292 @subsection pthread_cond_timedwait - 292 @subsection pthread_cond_timedwait - Wait with Timeout a Condition Variable 293 293 294 294 @subheading CALLING SEQUENCE:
Note: See TracChangeset
for help on using the changeset viewer.