mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
This lock is currently used in three places, mainly to protect tls->tl_mhead. Among them, pthread_mutex_add and pthread_mutex_remove involve writing to tls->tl_mhead, and there is certainly no conflict within the same thread. As for pthread_mutex_inconsistent, it involves reading. Currently, it can only be called when the TCB task corresponding to this tls exits, and the TCB corresponding to the tls can no longer continue to run. It seems that adding the lock serves no real purpose. Signed-off-by: hujun5 <hujun5@xiaomi.com>
88 lines
2.5 KiB
C
88 lines
2.5 KiB
C
/****************************************************************************
|
|
* sched/tls/tls_initinfo.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
|
|
#include "tls.h"
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: tls_init_info
|
|
*
|
|
* Description:
|
|
* Allocate and initialize tls_info_s structure.
|
|
*
|
|
* Input Parameters:
|
|
* - tcb: The TCB of new task
|
|
*
|
|
* Returned Value:
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int tls_init_info(FAR struct tcb_s *tcb)
|
|
{
|
|
FAR struct tls_info_s *info;
|
|
|
|
/* Allocate thread local storage */
|
|
|
|
info = up_stack_frame(tcb, tls_info_size());
|
|
if (info == NULL)
|
|
{
|
|
return -ENOMEM;
|
|
}
|
|
|
|
DEBUGASSERT(info == tcb->stack_alloc_ptr);
|
|
|
|
/* Initialize thread local storage */
|
|
|
|
up_tls_initialize(info);
|
|
|
|
/* Derive tl_size w/o arch knowledge */
|
|
|
|
info->tl_size =
|
|
(FAR char *)tcb->stack_base_ptr - (FAR char *)tcb->stack_alloc_ptr;
|
|
|
|
/* Attach per-task info in group to TLS */
|
|
|
|
info->tl_task = tcb->group->tg_info;
|
|
|
|
/* Thread ID */
|
|
|
|
info->tl_tid = tcb->pid;
|
|
|
|
/* Initialize the starting address of argv to NULL to prevent
|
|
* it from being misused.
|
|
*/
|
|
|
|
info->tl_argv = NULL;
|
|
|
|
return OK;
|
|
}
|