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