2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 22:21:48 +02:00
|
|
|
* sched/pthread/pthread_mutexinit.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2024-09-11 13:45:11 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2020-05-17 16:47:40 +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
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-17 16:47:40 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-17 16:47:40 +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.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
2016-11-02 21:43:03 +01:00
|
|
|
#include <nuttx/semaphore.h>
|
|
|
|
|
2014-08-08 20:55:02 +02:00
|
|
|
#include "pthread/pthread.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2012-07-14 21:30:31 +02:00
|
|
|
* Name: pthread_mutex_init
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Create a mutex
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2022-09-05 13:16:41 +02:00
|
|
|
* mutex - A reference to the mutex to be initialized
|
|
|
|
* attr - Mutex attribute object to be used
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2022-09-05 13:16:41 +02:00
|
|
|
* 0 if successful. Otherwise, an error code.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-11-02 16:05:18 +01:00
|
|
|
int pthread_mutex_init(FAR pthread_mutex_t *mutex,
|
|
|
|
FAR const pthread_mutexattr_t *attr)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
2022-06-30 19:34:24 +02:00
|
|
|
sinfo("mutex=%p attr=%p\n", mutex, attr);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
if (!mutex)
|
|
|
|
{
|
2024-08-06 17:39:14 +02:00
|
|
|
return EINVAL;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2024-08-06 17:39:14 +02:00
|
|
|
|
|
|
|
/* Initialize the mutex like a semaphore with initial count = 1 */
|
|
|
|
|
|
|
|
status = mutex_init(&mutex->mutex);
|
|
|
|
if (status < 0)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2024-08-06 17:39:14 +02:00
|
|
|
return -status;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Were attributes specified? If so, use them */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-03-27 17:08:14 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2024-08-06 17:39:14 +02:00
|
|
|
mutex->type = attr ? attr->type : PTHREAD_MUTEX_DEFAULT;
|
2017-03-27 02:37:24 +02:00
|
|
|
#endif
|
2024-08-06 17:39:14 +02:00
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
|
|
|
mutex->flink = NULL;
|
|
|
|
# ifdef CONFIG_PTHREAD_MUTEX_BOTH
|
|
|
|
mutex->flags = attr && attr->robust == PTHREAD_MUTEX_ROBUST ?
|
|
|
|
_PTHREAD_MFLAGS_ROBUST : 0;
|
|
|
|
# else
|
|
|
|
mutex->flags = 0;
|
|
|
|
# endif
|
2008-05-31 19:13:08 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2024-08-06 17:39:14 +02:00
|
|
|
#if defined(CONFIG_PRIORITY_INHERITANCE) || defined(CONFIG_PRIORITY_PROTECT)
|
|
|
|
if (attr)
|
|
|
|
{
|
|
|
|
status = mutex_set_protocol(&mutex->mutex, attr->proto);
|
2018-01-30 23:16:41 +01:00
|
|
|
if (status < 0)
|
2016-11-02 16:05:18 +01:00
|
|
|
{
|
2024-08-06 17:39:14 +02:00
|
|
|
mutex_destroy(&mutex->mutex);
|
|
|
|
return -status;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2017-03-27 01:37:28 +02:00
|
|
|
|
2024-08-06 17:39:14 +02:00
|
|
|
# ifdef CONFIG_PRIORITY_PROTECT
|
|
|
|
if (attr->proto == PTHREAD_PRIO_PROTECT)
|
|
|
|
{
|
|
|
|
status = mutex_setprioceiling(&mutex->mutex, attr->ceiling, NULL);
|
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
mutex_destroy(&mutex->mutex);
|
|
|
|
return -status;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
# endif
|
2011-01-19 22:17:37 +01:00
|
|
|
}
|
2024-08-06 17:39:14 +02:00
|
|
|
#endif
|
2008-05-31 19:13:08 +02:00
|
|
|
|
2024-08-06 17:39:14 +02:00
|
|
|
return 0;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|