summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch16.t
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 17:43:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-14 17:43:56 +0000
commit5e53171dfa27fa8ab863c04e8f4a21b0fe22f088 (patch)
tree7da63c30776af0c4e0f7767085afb1a3872832ba /doc/posix1003.1/ch16.t
parentAdded functions from POSIX standard. (diff)
downloadrtems-5e53171dfa27fa8ab863c04e8f4a21b0fe22f088.tar.bz2
Added functions from POSIX standard.
Diffstat (limited to 'doc/posix1003.1/ch16.t')
-rw-r--r--doc/posix1003.1/ch16.t49
1 files changed, 49 insertions, 0 deletions
diff --git a/doc/posix1003.1/ch16.t b/doc/posix1003.1/ch16.t
index d606593bf3..276827c105 100644
--- a/doc/posix1003.1/ch16.t
+++ b/doc/posix1003.1/ch16.t
@@ -7,14 +7,63 @@
@c
@chapter Thread Management
+
@section Threads
+
@section Thread Functions
+
@subsection Thread Creation Attributes
+
+@example
+pthread_attr_init()
+pthread_attr_destroy()
+pthread_attr_setstacksize()
+pthread_attr_getstacksize()
+pthread_attr_setstackaddr()
+pthread_attr_getstackaddr()
+pthread_attr_setdetachstate()
+pthread_attr_getdetachstate()
+@end example
+
@subsection Thread Creation
+
+@example
+pthread_create()
+@end example
+
@subsection Wait for Thread Termination
+
+@example
+pthread_join()
+@end example
+
@subsection Detaching a Thread
+
+@example
+pthread_detach()
+@end example
+
@subsection Thread Termination
+
+@example
+pthread_exit()
+@end example
+
@subsection Get Thread ID
+
+@example
+pthread_self()
+@end example
+
@subsection Compare Thread IDs
+
+@example
+pthread_equal()
+@end example
+
@subsection Dynamic Package Initialization
+@example
+pthread_once()
+@end example
+