summaryrefslogtreecommitdiffstats
path: root/posix1003_1/thread_specific_data.rst
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--posix1003_1/thread_specific_data.rst34
1 files changed, 34 insertions, 0 deletions
diff --git a/posix1003_1/thread_specific_data.rst b/posix1003_1/thread_specific_data.rst
new file mode 100644
index 0000000..0f2d381
--- /dev/null
+++ b/posix1003_1/thread_specific_data.rst
@@ -0,0 +1,34 @@
+Thread-Specific Data
+####################
+
+Thread-Specific Data Functions
+==============================
+
+Thread-Specific Data Key Creation
+---------------------------------
+
+.. code:: c
+
+ pthread_key_create(), Function, Implemented
+
+Thread-Specific Data Management
+-------------------------------
+
+.. code:: c
+
+ pthread_key_setspecific(), Function, Implemented
+ pthread_key_getspecific(), Function, Implemented
+
+Thread-Specific Data Key Deletion
+---------------------------------
+
+.. code:: c
+
+ pthread_key_delete(), Function, Implemented
+
+.. COMMENT: COPYRIGHT (c) 1988-2002.
+
+.. COMMENT: On-Line Applications Research Corporation (OAR).
+
+.. COMMENT: All rights reserved.
+