* sched/tls/task_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 <errno.h>
#include <fcntl.h>
#include <nuttx/kmalloc.h>
#include <nuttx/mutex.h>
#include <nuttx/syslog/syslog.h>
#include "sched/sched.h"
#include "tls.h"
* 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;
int i;
nxmutex_init(&list->sl_lock);
sq_init(&list->sl_queue);
list->sl_count = 3;
for (i = 0; i < 3; i++)
{
nxrmutex_init(&stream[i].fs_lock);
#if !defined(CONFIG_STDIO_DISABLE_BUFFERING) && CONFIG_STDIO_BUFFER_SIZE > 0
stream[i].fs_bufstart = stream[i].fs_buffer;
stream[i].fs_bufend = stream[i].fs_bufstart +
CONFIG_STDIO_BUFFER_SIZE;
stream[i].fs_bufpos = stream[i].fs_bufstart;
stream[i].fs_bufread = stream[i].fs_bufstart;
stream[i].fs_flags = __FS_FLAG_UBF;
# ifdef CONFIG_STDIO_LINEBUFFER
stream[i].fs_flags |= __FS_FLAG_LBF;
# endif
* file descriptor locks this stream.
*/
stream[i].fs_cookie = (FAR char *)(intptr_t)i;
stream[i].fs_oflags = (uint16_t)(i ? O_WROK : O_RDONLY);
stream[i].fs_iofunc.read = NULL;
stream[i].fs_iofunc.write = NULL;
stream[i].fs_iofunc.seek = NULL;
stream[i].fs_iofunc.close = NULL;
#endif
}
}
#endif
* Public Functions
****************************************************************************/
* Name: task_init_info
*
* Description:
* Allocate and initialize task_info_s structure.
*
* 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;
int ret = OK;
info = group_zalloc(group, sizeof(struct task_info_s));
if (info == NULL)
{
ret = -ENOMEM;
}
else
{
nxrmutex_init(&info->ta_lock);
group->tg_info = info;
#ifdef CONFIG_PTHREAD_ATFORK
list_initialize(&info->ta_atfork);
#endif
#ifdef CONFIG_FILE_STREAM
task_init_stream(&info->ta_streamlist);
#endif
#ifdef CONFIG_MM_TASK_HEAP
info->ta_heap = group->tg_heap;
#endif
#ifdef CONFIG_SYSLOG
info->ta_syslog_mask = g_syslog_mask;
#endif
info->ta_seed48[0] = 0;
info->ta_seed48[1] = 0;
info->ta_seed48[2] = 0;
info->ta_seed48[3] = 0xe66d;
info->ta_seed48[4] = 0xdeec;
info->ta_seed48[5] = 0x5;
info->ta_seed48[6] = 0xb;
}
return ret;
}