2022-05-28 04:58:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* sched/tls/task_initinfo.c
|
|
|
|
*
|
|
|
|
* 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 <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/kmalloc.h>
|
2022-09-06 14:18:45 +08:00
|
|
|
#include <nuttx/mutex.h>
|
2022-05-28 04:58:16 +08:00
|
|
|
|
|
|
|
#include "tls.h"
|
|
|
|
|
2023-10-15 15:02:30 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: task_init_stream
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is called when a new task is allocated. It initializes
|
|
|
|
* the streamlist instance that is stored in the task group.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_FILE_STREAM
|
|
|
|
static void task_init_stream(FAR struct streamlist *list)
|
|
|
|
{
|
|
|
|
FAR struct file_struct *stream = list->sl_std;
|
|
|
|
|
|
|
|
/* Initialize the list access mutex */
|
|
|
|
|
|
|
|
nxmutex_init(&list->sl_lock);
|
|
|
|
list->sl_head = NULL;
|
|
|
|
list->sl_tail = NULL;
|
|
|
|
|
|
|
|
/* Initialize stdin, stdout and stderr stream */
|
|
|
|
|
|
|
|
stream[0].fs_fd = -1;
|
|
|
|
nxrmutex_init(&stream[0].fs_lock);
|
|
|
|
stream[1].fs_fd = -1;
|
|
|
|
nxrmutex_init(&stream[1].fs_lock);
|
|
|
|
stream[2].fs_fd = -1;
|
|
|
|
nxrmutex_init(&stream[2].fs_lock);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-05-28 04:58:16 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: task_init_info
|
|
|
|
*
|
|
|
|
* Description:
|
2022-08-07 21:20:07 +08:00
|
|
|
* Allocate and initialize task_info_s structure.
|
2022-05-28 04:58:16 +08:00
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* - group: The group of new task
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) on success; a negated errno value on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int task_init_info(FAR struct task_group_s *group)
|
|
|
|
{
|
|
|
|
FAR struct task_info_s *info;
|
|
|
|
|
|
|
|
/* Allocate task info for group */
|
|
|
|
|
|
|
|
info = group_zalloc(group, sizeof(struct task_info_s));
|
|
|
|
if (info == NULL)
|
|
|
|
{
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
/* Initialize user space mutex */
|
2022-05-28 04:58:16 +08:00
|
|
|
|
2022-09-06 14:18:45 +08:00
|
|
|
nxmutex_init(&info->ta_lock);
|
2022-05-28 04:58:16 +08:00
|
|
|
group->tg_info = info;
|
|
|
|
|
2023-07-15 16:37:22 +08:00
|
|
|
#ifdef CONFIG_PTHREAD_ATFORK
|
|
|
|
list_initialize(&info->ta_atfork);
|
|
|
|
#endif
|
|
|
|
|
2023-01-10 17:54:49 +08:00
|
|
|
#ifdef CONFIG_FILE_STREAM
|
|
|
|
/* Initialize file streams for the task group */
|
|
|
|
|
2023-10-15 15:02:30 +08:00
|
|
|
task_init_stream(&info->ta_streamlist);
|
2023-01-10 17:54:49 +08:00
|
|
|
#endif
|
|
|
|
|
2022-05-28 04:58:16 +08:00
|
|
|
return OK;
|
|
|
|
}
|