2008-01-30 22:59:12 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 22:21:48 +02:00
|
|
|
* sched/pthread/pthread_mutexunlock.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2017-03-26 18:35:23 +02:00
|
|
|
* Copyright (C) 2007-2009, 2017 Gregory Nutt. All rights reserved.
|
2012-07-14 21:30:31 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
2008-01-30 22:59:12 +01:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-18 00:21:28 +01:00
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
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>
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
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_unlock
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2008-05-31 20:14:02 +02:00
|
|
|
* The pthread_mutex_unlock() function releases the mutex object referenced
|
|
|
|
* by mutex. The manner in which a mutex is released is dependent upon the
|
|
|
|
* mutex's type attribute. If there are threads blocked on the mutex object
|
|
|
|
* referenced by mutex when pthread_mutex_unlock() is called, resulting in
|
|
|
|
* the mutex becoming available, the scheduling policy is used to determine
|
|
|
|
* which thread shall acquire the mutex. (In the case of PTHREAD_MUTEX_RECURSIVE
|
|
|
|
* mutexes, the mutex becomes available when the count reaches zero and the
|
|
|
|
* calling thread no longer has any locks on this mutex).
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-05-31 20:02:49 +02:00
|
|
|
* If a signal is delivered to a thread waiting for a mutex, upon return from
|
|
|
|
* the signal handler the thread resumes waiting for the mutex as if it was
|
|
|
|
* not interrupted.
|
|
|
|
*
|
2007-02-18 00:21:28 +01:00
|
|
|
* Parameters:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2008-01-30 22:59:12 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-30 22:59:12 +01:00
|
|
|
int pthread_mutex_unlock(FAR pthread_mutex_t *mutex)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2017-03-26 18:35:23 +02:00
|
|
|
int ret = EINVAL;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("mutex=0x%p\n", mutex);
|
2017-03-26 18:35:23 +02:00
|
|
|
DEBUGASSERT(mutex != NULL);
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-03-26 18:35:23 +02:00
|
|
|
if (mutex != NULL)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
/* Make sure the semaphore is stable while we make the following
|
|
|
|
* checks. This all needs to be one atomic action.
|
|
|
|
*/
|
|
|
|
|
|
|
|
sched_lock();
|
|
|
|
|
|
|
|
/* Does the calling thread own the semaphore? */
|
|
|
|
|
|
|
|
if (mutex->pid != (int)getpid())
|
|
|
|
{
|
2017-03-22 15:08:43 +01:00
|
|
|
/* No... return an EPERM error.
|
|
|
|
*
|
|
|
|
* Per POSIX: "EPERM should be returned if the mutex type is
|
|
|
|
* PTHREAD_MUTEX_ERRORCHECK or PTHREAD_MUTEX_RECURSIVE, or the
|
|
|
|
* mutex is a robust mutex, and the current thread does not own
|
|
|
|
* the mutex."
|
|
|
|
*
|
|
|
|
* For the case of the non-robust PTHREAD_MUTEX_NORMAL mutex,
|
2017-03-26 18:35:23 +02:00
|
|
|
* the behavior is undefined.
|
2017-03-22 15:08:43 +01:00
|
|
|
*/
|
2008-05-31 19:13:08 +02:00
|
|
|
|
2016-06-12 21:08:23 +02:00
|
|
|
serr("ERROR: Holder=%d returning EPERM\n", mutex->pid);
|
2007-02-18 00:21:28 +01:00
|
|
|
ret = EPERM;
|
|
|
|
}
|
2014-04-13 22:32:20 +02:00
|
|
|
|
2008-05-31 19:13:08 +02:00
|
|
|
/* Yes, the caller owns the semaphore.. Is this a recursive mutex? */
|
|
|
|
|
|
|
|
#ifdef CONFIG_MUTEX_TYPES
|
|
|
|
else if (mutex->type == PTHREAD_MUTEX_RECURSIVE && mutex->nlocks > 1)
|
|
|
|
{
|
|
|
|
/* This is a recursive mutex and we there are multiple locks held. Retain
|
|
|
|
* the mutex lock, just decrement the count of locks held, and return
|
|
|
|
* success.
|
|
|
|
*/
|
2017-03-22 15:08:43 +01:00
|
|
|
|
2008-05-31 19:13:08 +02:00
|
|
|
mutex->nlocks--;
|
2017-03-26 18:35:23 +02:00
|
|
|
ret = OK;
|
2008-05-31 19:13:08 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* This is either a non-recursive mutex or is the outermost unlock of
|
|
|
|
* a recursive mutex.
|
|
|
|
*/
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
else
|
|
|
|
{
|
2008-05-31 19:13:08 +02:00
|
|
|
/* Nullify the pid and lock count then post the semaphore */
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2015-06-16 16:27:38 +02:00
|
|
|
mutex->pid = -1;
|
2008-05-31 19:13:08 +02:00
|
|
|
#ifdef CONFIG_MUTEX_TYPES
|
|
|
|
mutex->nlocks = 0;
|
|
|
|
#endif
|
2017-03-26 20:46:57 +02:00
|
|
|
ret = pthread_givemutex(mutex);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2017-03-22 15:08:43 +01:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
sched_unlock();
|
|
|
|
}
|
|
|
|
|
2016-06-12 00:42:42 +02:00
|
|
|
sinfo("Returning %d\n", ret);
|
2007-02-18 00:21:28 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|