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
|
|
|
*
|
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:
|
2007-02-18 00:21:28 +01:00
|
|
|
* None
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-02-18 00:21:28 +01:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
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 pshared = 0;
|
2017-03-27 17:08:14 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2016-11-02 16:05:18 +01:00
|
|
|
uint8_t type = PTHREAD_MUTEX_DEFAULT;
|
2008-05-31 19:13:08 +02:00
|
|
|
#endif
|
2016-11-02 16:05:18 +01:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2022-01-06 11:02:13 +01:00
|
|
|
# ifdef PTHREAD_MUTEX_DEFAULT_PRIO_INHERIT
|
2016-11-02 16:05:18 +01:00
|
|
|
uint8_t proto = PTHREAD_PRIO_INHERIT;
|
2022-01-06 11:02:13 +01:00
|
|
|
# else
|
|
|
|
uint8_t proto = PTHREAD_PRIO_NONE;
|
|
|
|
# endif
|
2017-03-27 02:37:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_DEFAULT_UNSAFE
|
|
|
|
uint8_t robust = PTHREAD_MUTEX_STALLED;
|
|
|
|
#else
|
|
|
|
uint8_t robust = PTHREAD_MUTEX_ROBUST;
|
|
|
|
#endif
|
2016-11-02 16:05:18 +01:00
|
|
|
#endif
|
|
|
|
int ret = OK;
|
2007-02-18 00:21:28 +01:00
|
|
|
int status;
|
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("mutex=0x%p attr=0x%p\n", mutex, attr);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
if (!mutex)
|
|
|
|
{
|
|
|
|
ret = EINVAL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Were attributes specified? If so, use them */
|
|
|
|
|
|
|
|
if (attr)
|
|
|
|
{
|
|
|
|
pshared = attr->pshared;
|
2016-11-02 16:05:18 +01:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
|
|
|
proto = attr->proto;
|
|
|
|
#endif
|
2017-03-27 17:08:14 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2008-05-31 19:13:08 +02:00
|
|
|
type = attr->type;
|
2017-03-27 02:37:24 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_BOTH
|
|
|
|
robust = attr->robust;
|
2008-05-31 19:13:08 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicate that the semaphore is not held by any thread. */
|
|
|
|
|
2015-06-16 16:27:38 +02:00
|
|
|
mutex->pid = -1;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Initialize the mutex like a semaphore with initial count = 1 */
|
|
|
|
|
2017-10-03 20:51:15 +02:00
|
|
|
status = nxsem_init((FAR sem_t *)&mutex->sem, pshared, 1);
|
2018-01-30 23:16:41 +01:00
|
|
|
if (status < 0)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2018-01-30 23:16:41 +01:00
|
|
|
ret = -ret;
|
2016-11-02 16:05:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
|
|
|
/* Initialize the semaphore protocol */
|
|
|
|
|
2020-05-17 15:56:21 +02:00
|
|
|
status = nxsem_set_protocol((FAR sem_t *)&mutex->sem, proto);
|
2018-01-30 23:16:41 +01:00
|
|
|
if (status < 0)
|
2016-11-02 16:05:18 +01:00
|
|
|
{
|
2018-01-30 23:16:41 +01:00
|
|
|
ret = -status;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2016-11-02 16:05:18 +01:00
|
|
|
#endif
|
2017-03-27 01:37:28 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
2017-03-26 21:37:05 +02:00
|
|
|
/* Initial internal fields of the mutex */
|
|
|
|
|
|
|
|
mutex->flink = NULL;
|
2020-05-17 16:47:40 +02:00
|
|
|
mutex->flags = (robust == PTHREAD_MUTEX_ROBUST ?
|
|
|
|
_PTHREAD_MFLAGS_ROBUST : 0);
|
2017-03-27 01:37:28 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-03-27 17:08:14 +02:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2011-01-19 22:17:37 +01:00
|
|
|
/* Set up attributes unique to the mutex type */
|
2008-05-31 19:13:08 +02:00
|
|
|
|
2011-01-19 22:17:37 +01:00
|
|
|
mutex->type = type;
|
|
|
|
mutex->nlocks = 0;
|
2008-05-31 19:13:08 +02:00
|
|
|
#endif
|
2011-01-19 22:17:37 +01:00
|
|
|
}
|
2008-05-31 19:13:08 +02:00
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("Returning %d\n", ret);
|
2007-02-18 00:21:28 +01:00
|
|
|
return ret;
|
|
|
|
}
|