mirror of
https://git.rtems.org/rtems-docs/
synced 2025-06-12 20:03:49 +08:00
37 lines
737 B
ReStructuredText
37 lines
737 B
ReStructuredText
.. comment SPDX-License-Identifier: CC-BY-SA-4.0
|
|
|
|
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.
|
|
|