summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch11.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 22:43:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-16 22:43:37 +0000
commit2a087f30a4e5d2b72e0bc046865bb7f5c4c5c22f (patch)
tree13aeb2a51322618ccc986361ebf6e3d72d989eb7 /doc/posix1003.1/ch11.t
parentAdded function status and data types (diff)
downloadrtems-2a087f30a4e5d2b72e0bc046865bb7f5c4c5c22f.tar.bz2
Added types, status of functions, cleaned up output of summarize.
Diffstat (limited to 'doc/posix1003.1/ch11.t')
-rw-r--r--doc/posix1003.1/ch11.t18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/posix1003.1/ch11.t b/doc/posix1003.1/ch11.t
index 23cb2edfb0..fededd6ac5 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(), Function
+sem_init(), Function, Untested Implementation
@end example
@subsection Destroy an Unnamed Semaphore
@example
-sem__destroy(), Function
+sem_destroy(), Function, Untested Implementation
@end example
@subsection Initialize/Open a Named Semaphore
@example
-sem_open(), Function
+sem_open(), Function, Untested Implementation
@end example
@subsection Close a Named Semaphore
@example
-sem_close(), Function
+sem_close(), Function, Untested Implementation
@end example
@subsection Remove a Named Semaphore
@example
-sem_unlink(), Function
+sem_unlink(), Function, Untested Implementation
@end example
@subsection Lock a Semaphore
@example
-sem_wait(), Function
-sem_trywait(), Function
+sem_wait(), Function, Untested Implementation
+sem_trywait(), Function, Untested Implementation
@end example
@subsection Unlock a Semaphore
@example
-sem_post(), Function
+sem_post(), Function, Untested Implementation
@end example
@subsection Get the Value of a Semaphore
@example
-sem_getvalue(), Function
+sem_getvalue(), Function, Untested Implementation
@end example
@section Mutexes