globus_thread_key_delete (3) Linux Manual Page
Thread-Specific Storage – Functionsint globus_thread_key_create (globus_thread_key_t *key, globus_thread_key_destructor_func_t destructor) Create a key for thread-specific storage. int globus_thread_key_delete (globus_thread_key_t key) Delete a thread-local storage key. void * globus_thread_getspecific (globus_thread_key_t key) Get a thread-specific data value. int globus_thread_setspecific (globus_thread_key_t key, void *value) Set a thread-specific data value. Detailed DescriptionThe globus_thread_key_t data type acts as a key to…
