summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch11.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-17 16:37:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-17 16:37:57 +0000
commit3cffce87d659305ef4ab8b7225116a36be47ce75 (patch)
treeff1dc28c88f6695c557ef27d4590fa2d53d20557 /doc/posix1003.1/ch11.t
parentAdded types, status of functions, cleaned up output of summarize. (diff)
downloadrtems-3cffce87d659305ef4ab8b7225116a36be47ce75.tar.bz2
Completed first pass at function status.
Added most data types without status information.
Diffstat (limited to 'doc/posix1003.1/ch11.t')
-rw-r--r--doc/posix1003.1/ch11.t38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/posix1003.1/ch11.t b/doc/posix1003.1/ch11.t
index fededd6ac5..6f395d54c9 100644
--- a/doc/posix1003.1/ch11.t
+++ b/doc/posix1003.1/ch11.t
@@ -66,25 +66,25 @@ sem_getvalue(), Function, Untested Implementation
@subsection Mutex Initialization Attributes
@example
-pthread_mutexattr_init(), Function
-pthread_mutexattr_destroy(), Function
-pthread_mutexattr_getpshared(), Function
-pthread_mutexattr_setpshared(), Function
+pthread_mutexattr_init(), Function, Implemented
+pthread_mutexattr_destroy(), Function, Implemented
+pthread_mutexattr_getpshared(), Function, Implemented
+pthread_mutexattr_setpshared(), Function, Implemented
@end example
@subsection Initializing and Destroying a Mutex
@example
-pthread_mutex_init(), Function
-pthread_mutex_destroy(), Function
+pthread_mutex_init(), Function, Implemented
+pthread_mutex_destroy(), Function, Implemented
@end example
@subsection Locking and Unlocking a Mutex
@example
-pthread_mutex_lock(), Function
-pthread_mutex_trylock(), Function
-pthread_mutex_unlock(), Function
+pthread_mutex_lock(), Function, Implemented
+pthread_mutex_trylock(), Function, Implemented
+pthread_mutex_unlock(), Function, Implemented
@end example
@section Condition Variables
@@ -92,30 +92,30 @@ pthread_mutex_unlock(), Function
@subsection Condition Variable Initialization Attributes
@example
-pthread_condattr_init(), Function
-pthread_condattr_destroy(), Function
-pthread_condattr_getpshared(), Function
-pthread_condattr_setpshared(), Function
+pthread_condattr_init(), Function, Implemented
+pthread_condattr_destroy(), Function, Implemented
+pthread_condattr_getpshared(), Function, Implemented
+pthread_condattr_setpshared(), Function, Implemented
@end example
@subsection Initialization and Destroying Condition Variables
@example
-pthread_cond_init(), Function
-pthread_cond_destroy(), Function
+pthread_cond_init(), Function, Implemented
+pthread_cond_destroy(), Function, Implemented
@end example
@subsection Broadcasting and Signaling a Condition
@example
-pthread_cond_signal(), Function
-pthread_cond_broadcast(), Function
+pthread_cond_signal(), Function, Implemented
+pthread_cond_broadcast(), Function, Implemented
@end example
@subsection Waiting on a Condition
@example
-pthread_cond_wait(), Function
-pthread_cond_timedwait(), Function
+pthread_cond_wait(), Function, Implemented
+pthread_cond_timedwait(), Function, Implemented
@end example