Changeset 76fa649 in rtems


Ignore:
Timestamp:
03/14/98 17:09:27 (26 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5e53171d
Parents:
24331760
Message:

Added functions from POSIX standard.

Location:
doc/posix1003.1
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/posix1003.1/ch09.t

    r24331760 r76fa649  
    88
    99@chapter System Databases
     10
    1011@section System Databases Section
     12
    1113@section Database Access
    12 @section Group Database Access
    13 @section User Database Access
    1414
     15@subsection Group Database Access
     16
     17@example
     18getgrgid()
     19getgrgid_r()
     20getgrname()
     21getgrnam_r()
     22@end example
     23
     24@subsection User Database Access
     25
     26@example
     27getpwuid()
     28getpwuid_r()
     29getpwnam()
     30getpwnam_r()
     31@end example
     32
  • doc/posix1003.1/ch10.t

    r24331760 r76fa649  
    88
    99@chapter Data Interchange Format
     10
    1011@section Archive/Interchange File Format
     12
    1113@subsection Extended tar Format
     14
    1215@subsection Extended cpio Format
     16
    1317@subsection Multiple Volumes
    1418
  • doc/posix1003.1/ch11.t

    r24331760 r76fa649  
    88
    99@chapter Synchronization
     10
    1011@section Semaphore Characteristics
     12
    1113@section Semaphore Functions
     14
    1215@subsection Initialize an Unnamed Semaphore
     16
     17@example
     18sem_init()
     19@end example
     20
    1321@subsection Destroy an Unnamed Semaphore
     22
     23@example
     24sem__destroy()
     25@end example
     26
    1427@subsection Initialize/Open a Named Semaphore
     28
     29@example
     30sem_open()
     31@end example
     32
    1533@subsection Close a Named Semaphore
     34
     35@example
     36sem_close()
     37@end example
     38
    1639@subsection Remove a Named Semaphore
     40
     41@example
     42sem_unlink()
     43@end example
     44
    1745@subsection Lock a Semaphore
     46
     47@example
     48sem_wait()
     49sem_trywait()
     50@end example
     51
    1852@subsection Unlock a Semaphore
     53
     54@example
     55sem_post()
     56@end example
     57
    1958@subsection Get the Value of a Semaphore
     59
     60@example
     61sem_getvalue()
     62@end example
     63
    2064@section Mutexes
     65
    2166@subsection Mutex Initialization Attributes
     67
     68@example
     69pthread_mutexattr_init()
     70pthread_mutexattr_destroy()
     71pthread_mutexattr_getpshared()
     72pthread_mutexattr_setpshared()
     73@end example
     74
    2275@subsection Initializing and Destroying a Mutex
     76
     77@example
     78pthread_mutex_init()
     79pthread_mutex_destroy()
     80@end example
     81
    2382@subsection Locking and Unlocking a Mutex
     83
     84@example
     85pthread_mutex_lock()
     86pthread_mutex_trylock()
     87pthread_mutex_unlock()
     88@end example
     89
    2490@section Condition Variables
     91
    2592@subsection Condition Variable Initialization Attributes
     93
     94@example
     95pthread_condattr_init()
     96pthread_condattr_destroy()
     97pthread_condattr_getpshared()
     98pthread_condattr_setpshared()
     99@end example
     100
    26101@subsection Initialization and Destroying Condition Variables
     102
     103@example
     104pthread_cond_init()
     105pthread_cond_destroy()
     106@end example
     107
    27108@subsection Broadcasting and Signaling a Condition
     109
     110@example
     111pthread_cond_signal()
     112pthread_cond_broadcast()
     113@end example
     114
    28115@subsection Waiting on a Condition
    29116
     117@example
     118pthread_cond_wait()
     119pthread_cond_timedwait()
     120@end example
     121
Note: See TracChangeset for help on using the changeset viewer.