summaryrefslogtreecommitdiffstats
path: root/posix1003_1/thread_cancellation.rst
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-16 19:14:55 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:23 -0400
commitef0a063a84282f74a9da4a899c555037972873a9 (patch)
treeb49917084fd03c9d3cf0c08a1dc204298eba404b /posix1003_1/thread_cancellation.rst
parentFix warnings. (diff)
downloadrtems-docs-ef0a063a84282f74a9da4a899c555037972873a9.tar.bz2
Split document into seperate files by section.
Diffstat (limited to 'posix1003_1/thread_cancellation.rst')
-rw-r--r--posix1003_1/thread_cancellation.rst76
1 files changed, 76 insertions, 0 deletions
diff --git a/posix1003_1/thread_cancellation.rst b/posix1003_1/thread_cancellation.rst
new file mode 100644
index 0000000..42039cb
--- /dev/null
+++ b/posix1003_1/thread_cancellation.rst
@@ -0,0 +1,76 @@
+Thread Cancellation
+###################
+
+Thread Cancellation Overview
+============================
+
+Cancelability States
+--------------------
+
+.. code:: c
+
+ PTHREAD_CANCEL_DISABLE, Constant, Implemented
+ PTHREAD_CANCEL_ENABLE, Constant, Implemented
+ PTHREAD_CANCEL_ASYNCHRONOUS, Constant, Implemented
+ PTHREAD_CANCEL_DEFERRED, Constant, Implemented
+
+Cancellation Points
+-------------------
+
+Thread Cancellation Cleanup Handlers
+------------------------------------
+
+.. code:: c
+
+ PTHREAD_CANCELED, Constant, Unimplemented
+
+Async-Cancel Safety
+-------------------
+
+Thread Cancellation Functions
+=============================
+
+Canceling Execution of a Thread
+-------------------------------
+
+.. code:: c
+
+ pthread_cancel(), Function, Implemented
+
+Setting Cancelability State
+---------------------------
+
+.. code:: c
+
+ pthread_setcancelstate(), Function, Implemented
+ pthread_setcanceltype(), Function, Implemented
+ pthread_testcancel(), Function, Implemented
+
+Establishing Cancellation Handlers
+----------------------------------
+
+.. code:: c
+
+ pthread_cleanup_push(), Function, Implemented
+ pthread_cleanup_pop(), Function, Implemented
+
+Language-Independent Cancellation Functionality
+===============================================
+
+Requesting Cancellation
+-----------------------
+
+Associating Cleanup Code With Scopes
+------------------------------------
+
+Controlling Cancellation Within Scopes
+--------------------------------------
+
+Defined Cancellation Sequence
+-----------------------------
+
+List of Cancellation Points
+---------------------------
+
+.. COMMENT: DO NOT EDIT - AUTOMATICALLY GENERATED!!!
+