From ef0a063a84282f74a9da4a899c555037972873a9 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sat, 16 Jan 2016 19:14:55 -0500 Subject: Split document into seperate files by section. --- posix1003_1/thread_specific_data.rst | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 posix1003_1/thread_specific_data.rst (limited to 'posix1003_1/thread_specific_data.rst') 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. + -- cgit v1.2.3