From 34683feee24db199707d647f8c2c19705cafed40 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 16 Mar 1998 17:08:52 +0000 Subject: Added Function field. --- doc/posix1003.1/ch11.t | 56 +++++++++++++++++++++++++------------------------- 1 file changed, 28 insertions(+), 28 deletions(-) (limited to 'doc/posix1003.1/ch11.t') diff --git a/doc/posix1003.1/ch11.t b/doc/posix1003.1/ch11.t index 9187259187..23cb2edfb0 100644 --- a/doc/posix1003.1/ch11.t +++ b/doc/posix1003.1/ch11.t @@ -15,50 +15,50 @@ @subsection Initialize an Unnamed Semaphore @example -sem_init() +sem_init(), Function @end example @subsection Destroy an Unnamed Semaphore @example -sem__destroy() +sem__destroy(), Function @end example @subsection Initialize/Open a Named Semaphore @example -sem_open() +sem_open(), Function @end example @subsection Close a Named Semaphore @example -sem_close() +sem_close(), Function @end example @subsection Remove a Named Semaphore @example -sem_unlink() +sem_unlink(), Function @end example @subsection Lock a Semaphore @example -sem_wait() -sem_trywait() +sem_wait(), Function +sem_trywait(), Function @end example @subsection Unlock a Semaphore @example -sem_post() +sem_post(), Function @end example @subsection Get the Value of a Semaphore @example -sem_getvalue() +sem_getvalue(), Function @end example @section Mutexes @@ -66,25 +66,25 @@ sem_getvalue() @subsection Mutex Initialization Attributes @example -pthread_mutexattr_init() -pthread_mutexattr_destroy() -pthread_mutexattr_getpshared() -pthread_mutexattr_setpshared() +pthread_mutexattr_init(), Function +pthread_mutexattr_destroy(), Function +pthread_mutexattr_getpshared(), Function +pthread_mutexattr_setpshared(), Function @end example @subsection Initializing and Destroying a Mutex @example -pthread_mutex_init() -pthread_mutex_destroy() +pthread_mutex_init(), Function +pthread_mutex_destroy(), Function @end example @subsection Locking and Unlocking a Mutex @example -pthread_mutex_lock() -pthread_mutex_trylock() -pthread_mutex_unlock() +pthread_mutex_lock(), Function +pthread_mutex_trylock(), Function +pthread_mutex_unlock(), Function @end example @section Condition Variables @@ -92,30 +92,30 @@ pthread_mutex_unlock() @subsection Condition Variable Initialization Attributes @example -pthread_condattr_init() -pthread_condattr_destroy() -pthread_condattr_getpshared() -pthread_condattr_setpshared() +pthread_condattr_init(), Function +pthread_condattr_destroy(), Function +pthread_condattr_getpshared(), Function +pthread_condattr_setpshared(), Function @end example @subsection Initialization and Destroying Condition Variables @example -pthread_cond_init() -pthread_cond_destroy() +pthread_cond_init(), Function +pthread_cond_destroy(), Function @end example @subsection Broadcasting and Signaling a Condition @example -pthread_cond_signal() -pthread_cond_broadcast() +pthread_cond_signal(), Function +pthread_cond_broadcast(), Function @end example @subsection Waiting on a Condition @example -pthread_cond_wait() -pthread_cond_timedwait() +pthread_cond_wait(), Function +pthread_cond_timedwait(), Function @end example -- cgit v1.2.3