summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch16.t
diff options
context:
space:
mode:
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
+