Changeset 76fa649 in rtems
- Timestamp:
- 03/14/98 17:09:27 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5e53171d
- Parents:
- 24331760
- Location:
- doc/posix1003.1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/posix1003.1/ch09.t
r24331760 r76fa649 8 8 9 9 @chapter System Databases 10 10 11 @section System Databases Section 12 11 13 @section Database Access 12 @section Group Database Access13 @section User Database Access14 14 15 @subsection Group Database Access 16 17 @example 18 getgrgid() 19 getgrgid_r() 20 getgrname() 21 getgrnam_r() 22 @end example 23 24 @subsection User Database Access 25 26 @example 27 getpwuid() 28 getpwuid_r() 29 getpwnam() 30 getpwnam_r() 31 @end example 32 -
doc/posix1003.1/ch10.t
r24331760 r76fa649 8 8 9 9 @chapter Data Interchange Format 10 10 11 @section Archive/Interchange File Format 12 11 13 @subsection Extended tar Format 14 12 15 @subsection Extended cpio Format 16 13 17 @subsection Multiple Volumes 14 18 -
doc/posix1003.1/ch11.t
r24331760 r76fa649 8 8 9 9 @chapter Synchronization 10 10 11 @section Semaphore Characteristics 12 11 13 @section Semaphore Functions 14 12 15 @subsection Initialize an Unnamed Semaphore 16 17 @example 18 sem_init() 19 @end example 20 13 21 @subsection Destroy an Unnamed Semaphore 22 23 @example 24 sem__destroy() 25 @end example 26 14 27 @subsection Initialize/Open a Named Semaphore 28 29 @example 30 sem_open() 31 @end example 32 15 33 @subsection Close a Named Semaphore 34 35 @example 36 sem_close() 37 @end example 38 16 39 @subsection Remove a Named Semaphore 40 41 @example 42 sem_unlink() 43 @end example 44 17 45 @subsection Lock a Semaphore 46 47 @example 48 sem_wait() 49 sem_trywait() 50 @end example 51 18 52 @subsection Unlock a Semaphore 53 54 @example 55 sem_post() 56 @end example 57 19 58 @subsection Get the Value of a Semaphore 59 60 @example 61 sem_getvalue() 62 @end example 63 20 64 @section Mutexes 65 21 66 @subsection Mutex Initialization Attributes 67 68 @example 69 pthread_mutexattr_init() 70 pthread_mutexattr_destroy() 71 pthread_mutexattr_getpshared() 72 pthread_mutexattr_setpshared() 73 @end example 74 22 75 @subsection Initializing and Destroying a Mutex 76 77 @example 78 pthread_mutex_init() 79 pthread_mutex_destroy() 80 @end example 81 23 82 @subsection Locking and Unlocking a Mutex 83 84 @example 85 pthread_mutex_lock() 86 pthread_mutex_trylock() 87 pthread_mutex_unlock() 88 @end example 89 24 90 @section Condition Variables 91 25 92 @subsection Condition Variable Initialization Attributes 93 94 @example 95 pthread_condattr_init() 96 pthread_condattr_destroy() 97 pthread_condattr_getpshared() 98 pthread_condattr_setpshared() 99 @end example 100 26 101 @subsection Initialization and Destroying Condition Variables 102 103 @example 104 pthread_cond_init() 105 pthread_cond_destroy() 106 @end example 107 27 108 @subsection Broadcasting and Signaling a Condition 109 110 @example 111 pthread_cond_signal() 112 pthread_cond_broadcast() 113 @end example 114 28 115 @subsection Waiting on a Condition 29 116 117 @example 118 pthread_cond_wait() 119 pthread_cond_timedwait() 120 @end example 121
Note: See TracChangeset
for help on using the changeset viewer.