summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/keygetspecific.c
blob: 08ac1ed28cbd8a7c745680dc443543f28a6b25f7 (plain) (tree)
1
2
3
4
5
6
7
8



                                         
                    

   
  


                                                   
                                           
  

                                                          
                                        

   



                   
                                
 
  






                                                                     



                                 
 

                                                            
 
                                                      
 

                                              
 



                                                                      
   
 


                                                            
 
/**
 * @file
 *
 * @brief Thread-Specific Data Management
 * @ingroup POSIXAPI
 */

/*
 * Copyright (c) 2012 Zhongwei Yao.
 * COPYRIGHT (c) 1989-2007.
 * On-Line Applications Research Corporation (OAR).
 * Copyright (c) 2016 embedded brains GmbH.
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/posix/keyimpl.h>

/*
 *  17.1.2 Thread-Specific Data Management, P1003.1c/Draft 10, p. 165
 */

void *pthread_getspecific(
  pthread_key_t  key
)
{
  Thread_Control   *executing;
  ISR_lock_Context  lock_context;
  RBTree_Node      *node;
  void             *value;

  executing = _Thread_Get_executing();
  _POSIX_Keys_Key_value_acquire( executing, &lock_context );

  node = _POSIX_Keys_Key_value_find( key, executing );

  if ( node != NULL ) {
    POSIX_Keys_Key_value_pair *key_value_pair;

    key_value_pair = POSIX_KEYS_RBTREE_NODE_TO_KEY_VALUE_PAIR( node );
    value = key_value_pair->value;
  } else {
    value = NULL;
  }

  _POSIX_Keys_Key_value_release( executing, &lock_context );

  return value;
}