2016-03-11 02:31:22 +01:00
|
|
|
/****************************************************************************
|
2020-05-08 15:23:26 +02:00
|
|
|
* libs/libc/tls/tls_setvalue.c
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
2020-05-05 17:52:15 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
2020-05-05 17:52:15 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
2020-05-05 17:52:15 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include <nuttx/arch.h>
|
|
|
|
#include <nuttx/tls.h>
|
2016-03-11 14:17:32 +01:00
|
|
|
#include <arch/tls.h>
|
2016-03-11 02:31:22 +01:00
|
|
|
|
2020-05-07 17:46:47 +02:00
|
|
|
#if CONFIG_TLS_NELEM > 0
|
2016-03-11 02:31:22 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2020-05-08 15:23:26 +02:00
|
|
|
* Name: tls_set_value
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2020-05-08 15:23:26 +02:00
|
|
|
* Set the TLS element associated with the 'tlsindex' to 'tlsvalue'
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
2020-05-08 15:23:26 +02:00
|
|
|
* tlsindex - Index of TLS data element to set
|
|
|
|
* tlsvalue - The new value of the TLS data element
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2020-05-08 15:23:26 +02:00
|
|
|
* Zero is returned on success, a negated errno value is return on
|
|
|
|
* failure:
|
|
|
|
*
|
|
|
|
* EINVAL - tlsindex is not in range.
|
2016-03-11 02:31:22 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-05-08 15:23:26 +02:00
|
|
|
int tls_set_value(int tlsindex, uintptr_t tlsvalue)
|
2016-03-11 02:31:22 +01:00
|
|
|
{
|
|
|
|
FAR struct tls_info_s *info;
|
|
|
|
|
2020-05-08 15:23:26 +02:00
|
|
|
DEBUGASSERT(tlsindex >= 0 && tlsindex < CONFIG_TLS_NELEM);
|
|
|
|
if (tlsindex >= 0 && tlsindex < CONFIG_TLS_NELEM)
|
2016-03-11 02:31:22 +01:00
|
|
|
{
|
|
|
|
/* Get the TLS info structure from the current threads stack */
|
|
|
|
|
|
|
|
info = up_tls_info();
|
|
|
|
DEBUGASSERT(info != NULL);
|
|
|
|
|
|
|
|
/* Set the element value int the TLS info. */
|
|
|
|
|
2020-05-08 15:23:26 +02:00
|
|
|
info->tl_elem[tlsindex] = tlsvalue;
|
|
|
|
return OK;
|
2016-03-11 02:31:22 +01:00
|
|
|
}
|
2020-05-08 15:23:26 +02:00
|
|
|
|
|
|
|
return -EINVAL;
|
2016-03-11 02:31:22 +01:00
|
|
|
}
|
|
|
|
|
2020-05-07 17:46:47 +02:00
|
|
|
#endif /* CONFIG_TLS_NELEM > 0 */
|