From 5e53171dfa27fa8ab863c04e8f4a21b0fe22f088 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Sat, 14 Mar 1998 17:43:56 +0000 Subject: Added functions from POSIX standard. --- doc/posix1003.1/ch16.t | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'doc/posix1003.1/ch16.t') 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 + -- cgit v1.2.3