nuttx/libs/libc/pthread/pthread_attr_init.c
Alin Jerpelea b5d4a01821 libs: Author Gregory Nutt: update licenses to Apache
Gregory Nutt has submitted the SGA and we can migrate the licenses
 to Apache.

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
2021-03-03 18:52:53 -08:00

92 lines
2.9 KiB
C

/****************************************************************************
* libs/libc/pthread/pthread_attr_init.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 <nuttx/config.h>
#include <pthread.h>
#include <string.h>
#include <debug.h>
#include <errno.h>
#include <nuttx/pthread.h>
/****************************************************************************
* Public Data
****************************************************************************/
/* Default pthread attributes (see include/nuttx/pthread.h). When configured
* to build separate kernel- and user-address spaces, this global is
* duplicated in each address spaced. This copy can only be shared within
* the user address space.
*/
#if !defined(CONFIG_BUILD_FLAT) && !defined(__KERNEL__)
const pthread_attr_t g_default_pthread_attr = PTHREAD_ATTR_INITIALIZER;
#endif
/****************************************************************************
* Public Functions
****************************************************************************/
/****************************************************************************
* Name: pthread_attr_init
*
* Description:
* Initializes a thread attributes object (attr) with
* default values for all of the individual attributes
* used by a given implementation.
*
* Input Parameters:
* attr
*
* Returned Value:
* 0 on success, otherwise an error number
*
* Assumptions:
*
****************************************************************************/
int pthread_attr_init(FAR pthread_attr_t *attr)
{
int ret = OK;
linfo("attr=0x%p\n", attr);
if (!attr)
{
ret = ENOMEM;
}
else
{
/* Set the child thread priority to be the default
* priority. Set the child stack size to some arbitrary
* default value.
*/
memcpy(attr, &g_default_pthread_attr, sizeof(pthread_attr_t));
}
linfo("Returning %d\n", ret);
return ret;
}