2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 22:21:48 +02:00
|
|
|
* sched/pthread/pthread_keycreate.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-12-28 21:21:19 +01:00
|
|
|
* Copyright (C) 2007-2009, 2013, 2018 Gregory Nutt. All rights reserved.
|
2012-07-14 21:30:31 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-01-30 22:59:12 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2007-02-21 22:55:16 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
2013-02-03 17:43:58 +01:00
|
|
|
#include <assert.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <debug.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
#include <nuttx/irq.h>
|
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 20:55:02 +02:00
|
|
|
#include "pthread/pthread.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: pthread_key_create
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2012-07-14 21:30:31 +02:00
|
|
|
* This function creates a thread-specific data key visible to all threads
|
|
|
|
* in the system. Although the same key value may be used by different
|
|
|
|
* threads, the values bound to the key by pthread_setspecific() are
|
|
|
|
* maintained on a per-thread basis and persist for the life of the calling
|
2007-02-18 00:21:28 +01:00
|
|
|
* thread.
|
|
|
|
*
|
2012-07-14 21:30:31 +02:00
|
|
|
* Upon key creation, the value NULL will be associated with the new key
|
|
|
|
* in all active threads. Upon thread creation, the value NULL will be
|
|
|
|
* associated with all defined keys in the new thread.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2018-12-28 21:21:19 +01:00
|
|
|
* key - A pointer to the key to create.
|
|
|
|
* destructor - An optional destructor() function that may be associated
|
|
|
|
* with each key that is invoked when a thread exits.
|
|
|
|
* However, this argument is ignored in the current
|
|
|
|
* implementation.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2012-07-14 21:30:31 +02:00
|
|
|
* If successful, the pthread_key_create() function will store the newly
|
|
|
|
* created key value at *key and return zero (OK). Otherwise, an error
|
2018-12-28 21:21:19 +01:00
|
|
|
* number will be returned to indicate the error:
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-12-28 21:21:19 +01:00
|
|
|
* EAGAIN - The system lacked sufficient resources to create another
|
|
|
|
* thread-specific data key, or the system-imposed limit on
|
|
|
|
* the total number of keys pers process {PTHREAD_KEYS_MAX}
|
|
|
|
* has been exceeded
|
2019-10-17 19:00:14 +02:00
|
|
|
* ENOMEM - Insufficient memory exist to create the key.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* POSIX Compatibility:
|
2012-07-14 21:30:31 +02:00
|
|
|
* - The present implementation ignores the destructor argument.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
int pthread_key_create(FAR pthread_key_t *key,
|
|
|
|
CODE void (*destructor)(FAR void *))
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2007-02-21 22:55:16 +01:00
|
|
|
#if CONFIG_NPTHREAD_KEYS > 0
|
2016-02-07 00:44:41 +01:00
|
|
|
FAR struct tcb_s *rtcb = this_task();
|
2013-02-03 17:43:58 +01:00
|
|
|
FAR struct task_group_s *group = rtcb->group;
|
2018-12-28 21:21:19 +01:00
|
|
|
irqstate_t flags;
|
|
|
|
int candidate;
|
2007-02-18 00:21:28 +01:00
|
|
|
int ret = EAGAIN;
|
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
DEBUGASSERT(key != NULL && group != NULL);
|
2013-02-03 17:43:58 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
/* Search for an unused key. This is done in a critical section here to
|
|
|
|
* avoid concurrent modification of the group keyset.
|
|
|
|
*/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
flags = spin_lock_irqsave();
|
|
|
|
for (candidate = 0; candidate < PTHREAD_KEYS_MAX; candidate++)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2018-12-28 21:21:19 +01:00
|
|
|
/* Is this candidate key available? */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
pthread_keyset_t mask = (1 << candidate);
|
|
|
|
if ((group->tg_keyset & mask) == 0)
|
|
|
|
{
|
|
|
|
/* Yes.. allocate the key and break out of the loop */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
group->tg_keyset |= mask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
spin_unlock_irqrestore(flags);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
/* Check if found a valid key. */
|
|
|
|
|
|
|
|
if (candidate < PTHREAD_KEYS_MAX)
|
|
|
|
{
|
|
|
|
/* Yes.. Return the key value and success */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-12-28 21:21:19 +01:00
|
|
|
*key = candidate;
|
|
|
|
ret = OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2007-02-21 22:55:16 +01:00
|
|
|
#else
|
|
|
|
return ENOSYS;
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|