summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch18.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/ch18.t
parentAdded functions from POSIX standard. (diff)
downloadrtems-5e53171dfa27fa8ab863c04e8f4a21b0fe22f088.tar.bz2
Added functions from POSIX standard.
Diffstat (limited to '')
-rw-r--r--doc/posix1003.1/ch18.t30
1 files changed, 30 insertions, 0 deletions
diff --git a/doc/posix1003.1/ch18.t b/doc/posix1003.1/ch18.t
index dfa3993216..f6015a77d8 100644
--- a/doc/posix1003.1/ch18.t
+++ b/doc/posix1003.1/ch18.t
@@ -7,19 +7,49 @@
@c
@chapter Thread Cancellation
+
@section Thread Cancellation Overview
+
@subsection Cancelability States
+
@subsection Cancellation Points
+
@subsection Thread Cancellation Cleanup Handlers
+
@subsection Async-Cancel Safety
+
@section Thread Cancellation Functions
+
@subsection Canceling Execution of a Thread
+
+@example
+pthread_cancel()
+@end example
+
@subsection Setting Cancelability State
+
+@example
+pthread_setcancelstate()
+pthread_setcanceltype()
+pthread_testcancel()
+@end example
+
@subsection Establishing Cancellation Handlers
+
+@example
+pthread_cleanup_push()
+pthread_cleanup_pop()
+@end example
+
@section Language-Independent Cancellation Functionality
+
@subsection Requesting Cancellation
+
@subsection Associating Cleanup Code With Scopes
+
@subsection Controlling Cancellation Within Scopes
+
@subsection Defined Cancellation Sequence
+
@subsection List of Cancellation Points