Changeset a518cc11 in rtems


Ignore:
Timestamp:
10/11/99 20:24:37 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
a7a33cc3
Parents:
ffce9b39
Message:

Added descriptions.

Location:
doc/posix_users
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/posix_users/cancel.t

    rffce9b39 ra518cc11  
    1717
    1818@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
    2425@end itemize
    2526
     
    4041
    4142@page
    42 @subsection pthread_cancel -
     43@subsection pthread_cancel - Cancel Execution of a Thread
    4344
    4445@subheading CALLING SEQUENCE:
     
    6768
    6869@page
    69 @subsection pthread_setcancelstate -
     70@subsection pthread_setcancelstate - Set Cancelability State
    7071
    7172@subheading CALLING SEQUENCE:
     
    9495
    9596@page
    96 @subsection pthread_setcanceltype -
     97@subsection pthread_setcanceltype - Set Cancelability Type
    9798
    9899@subheading CALLING SEQUENCE:
     
    121122
    122123@page
    123 @subsection pthread_testcancel -
     124@subsection pthread_testcancel - Create Cancellation Point
    124125
    125126@subheading CALLING SEQUENCE:
     
    148149
    149150@page
    150 @subsection pthread_cleanup_push -
     151@subsection pthread_cleanup_push - Establish Cancellation Handler
    151152
    152153@subheading CALLING SEQUENCE:
     
    174175@subheading NOTES:
    175176
     177@page
     178@subsection pthread_cleanup_pop - Remove Cancellation Handler
     179
     180@subheading CALLING SEQUENCE:
     181
     182@ifset is-C
     183@example
     184int 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
     196The
     197
     198@end table
     199
     200@subheading DESCRIPTION:
     201
     202@subheading NOTES:
     203
  • doc/posix_users/clock.t

    rffce9b39 ra518cc11  
    1616
    1717@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
    2121@item @code{sleep} - Delay Process Execution
    22 @item @code{nanosleep} -
     22@item @code{nanosleep} - Delay with High Resolution
    2323@item @code{gettimeofday} - Get the Time of Day
    2424@item @code{time} - Get time in seconds
     
    4040and status codes.
    4141
    42 @subsection clock_gettime -
     42@subsection clock_gettime -Obtain Time of Day
    4343
    4444@subheading CALLING SEQUENCE:
     
    7272
    7373@page
    74 @subsection clock_settime -
     74@subsection clock_settime - Set Time of Day
    7575 
    7676@subheading CALLING SEQUENCE:
     
    108108 
    109109@page
    110 @subsection clock_getres -
     110@subsection clock_getres - Get Clock Resolution
    111111 
    112112@subheading CALLING SEQUENCE:
     
    167167 
    168168@page
    169 @subsection nanosleep -
     169@subsection nanosleep - Delay with High Resolution
    170170 
    171171@subheading CALLING SEQUENCE:
  • doc/posix_users/cond.t

    rffce9b39 ra518cc11  
    1616
    1717@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
    2828@end itemize
    2929
     
    4444
    4545@page
    46 @subsection pthread_condattr_init -
     46@subsection pthread_condattr_init - Initialize a Condition Variable Attribute Set
    4747
    4848@subheading CALLING SEQUENCE:
     
    6969
    7070@page
    71 @subsection pthread_condattr_destroy -
     71@subsection pthread_condattr_destroy - Destroy a Condition Variable Attribute Set
    7272
    7373@subheading CALLING SEQUENCE:
     
    9393
    9494@page
    95 @subsection pthread_condattr_setpshared -
     95@subsection pthread_condattr_setpshared - Set Process Shared Attribute
    9696
    9797@subheading CALLING SEQUENCE:
     
    119119
    120120@page
    121 @subsection pthread_condattr_getpshared -
     121@subsection pthread_condattr_getpshared - Get Process Shared Attribute
    122122
    123123@subheading CALLING SEQUENCE:
     
    146146
    147147@page
    148 @subsection pthread_cond_init -
     148@subsection pthread_cond_init - Initialize a Condition Variable
    149149
    150150@subheading CALLING SEQUENCE:
     
    181181
    182182@page
    183 @subsection pthread_cond_destroy -
     183@subsection pthread_cond_destroy - Destroy a Condition Variable
    184184
    185185@subheading CALLING SEQUENCE:
     
    208208
    209209@page
    210 @subsection pthread_cond_signal -
     210@subsection pthread_cond_signal - Signal a Condition Variable
    211211
    212212@subheading CALLING SEQUENCE:
     
    235235
    236236@page
    237 @subsection pthread_cond_broadcast -
     237@subsection pthread_cond_broadcast - Broadcast a Condition Variable
    238238
    239239@subheading CALLING SEQUENCE:
     
    262262
    263263@page
    264 @subsection pthread_cond_wait -
     264@subsection pthread_cond_wait - Wait on a Condition Variable
    265265
    266266@subheading CALLING SEQUENCE:
     
    290290
    291291@page
    292 @subsection pthread_cond_timedwait -
     292@subsection pthread_cond_timedwait - Wait with Timeout a Condition Variable
    293293
    294294@subheading CALLING SEQUENCE:
Note: See TracChangeset for help on using the changeset viewer.