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