2008-01-30 21:59:12 +00:00
|
|
|
/****************************************************************************
|
2014-08-08 14:21:48 -06:00
|
|
|
* sched/pthread/pthread_mutextrylock.c
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2020-05-09 09:05:29 -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-09 09:05:29 -06:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2020-05-09 09:05:29 -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>
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <sched.h>
|
2017-03-26 10:35:23 -06:00
|
|
|
#include <assert.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
2012-07-14 19:30:31 +00:00
|
|
|
|
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_trylock
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Description:
|
2020-05-09 09:05:29 -06:00
|
|
|
* The function pthread_mutex_trylock() is identical to
|
|
|
|
* pthread_mutex_lock() except that if the mutex object referenced by the
|
|
|
|
* mutex is currently locked (by any thread, including the current
|
|
|
|
* thread), the call returns immediately with the errno EBUSY.
|
2008-05-31 18:02:49 +00:00
|
|
|
*
|
2019-06-30 10:35:10 -06: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-17 23:21:28 +00:00
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2008-05-31 18:02:49 +00:00
|
|
|
* mutex - A reference to the mutex to be locked.
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2018-02-01 10:00:02 -06:00
|
|
|
* Returned Value:
|
2008-05-31 18:02:49 +00:00
|
|
|
* 0 on success or an errno value on failure. Note that the errno EINTR
|
2015-06-16 08:32:20 -06:00
|
|
|
* is never returned by pthread_mutex_trylock().
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2015-06-16 08:32:20 -06:00
|
|
|
* POSIX Compatibility:
|
|
|
|
* - This implementation does not return EAGAIN when the mutex could not be
|
|
|
|
* acquired because the maximum number of recursive locks for mutex has
|
|
|
|
* been exceeded.
|
|
|
|
*
|
2008-01-30 21:59:12 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-30 21:59:12 +00:00
|
|
|
int pthread_mutex_trylock(FAR pthread_mutex_t *mutex)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2017-03-26 10:35:23 -06:00
|
|
|
int status;
|
|
|
|
int ret = EINVAL;
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2016-06-11 16:42:42 -06:00
|
|
|
sinfo("mutex=0x%p\n", mutex);
|
2017-03-26 10:35:23 -06:00
|
|
|
DEBUGASSERT(mutex != NULL);
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2017-03-26 10:35:23 -06:00
|
|
|
if (mutex != NULL)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2015-06-16 08:32:20 -06:00
|
|
|
int mypid = (int)getpid();
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
/* Make sure the semaphore is stable while we make the following
|
|
|
|
* checks. This all needs to be one atomic action.
|
|
|
|
*/
|
|
|
|
|
|
|
|
sched_lock();
|
|
|
|
|
|
|
|
/* Try to get the semaphore. */
|
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
status = pthread_mutex_trytake(mutex);
|
2017-03-26 10:35:23 -06:00
|
|
|
if (status == OK)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2015-06-16 08:32:20 -06:00
|
|
|
/* If we successfully obtained the semaphore, then indicate
|
2007-02-17 23:21:28 +00:00
|
|
|
* that we own it.
|
|
|
|
*/
|
|
|
|
|
2015-06-16 08:32:20 -06:00
|
|
|
mutex->pid = mypid;
|
|
|
|
|
2017-03-27 09:08:14 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2015-06-16 08:32:20 -06:00
|
|
|
if (mutex->type == PTHREAD_MUTEX_RECURSIVE)
|
|
|
|
{
|
|
|
|
mutex->nlocks = 1;
|
|
|
|
}
|
|
|
|
#endif
|
2019-10-24 10:49:28 -06:00
|
|
|
|
2017-03-26 10:35:23 -06:00
|
|
|
ret = OK;
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
2017-08-14 17:19:27 -06:00
|
|
|
/* pthread_mutex_trytake failed. Did it fail because the semaphore
|
2020-02-23 16:50:23 +08:00
|
|
|
* was not available?
|
2017-08-14 17:19:27 -06:00
|
|
|
*/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
else if (status == EAGAIN)
|
2007-02-17 23:21:28 +00:00
|
|
|
{
|
2017-03-29 07:50:40 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
|
|
|
/* Check if recursive mutex was locked by the calling thread. */
|
2015-06-16 08:32:20 -06:00
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
if (mutex->type == PTHREAD_MUTEX_RECURSIVE && mutex->pid == mypid)
|
2015-06-16 08:32:20 -06:00
|
|
|
{
|
2020-05-09 09:05:29 -06:00
|
|
|
/* Increment the number of locks held and return
|
|
|
|
* successfully.
|
|
|
|
*/
|
2017-03-26 10:35:23 -06:00
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
if (mutex->nlocks < INT16_MAX)
|
2017-03-26 10:35:23 -06:00
|
|
|
{
|
2017-03-29 07:50:40 -06:00
|
|
|
mutex->nlocks++;
|
|
|
|
ret = OK;
|
2017-03-26 10:35:23 -06:00
|
|
|
}
|
|
|
|
else
|
2017-03-29 07:50:40 -06:00
|
|
|
{
|
|
|
|
ret = EOVERFLOW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2017-03-26 10:35:23 -06:00
|
|
|
#endif
|
2017-03-26 17:37:28 -06:00
|
|
|
|
|
|
|
#ifndef CONFIG_PTHREAD_MUTEX_UNSAFE
|
2019-06-30 10:35:10 -06:00
|
|
|
/* The calling thread does not hold the semaphore. The correct
|
|
|
|
* behavior for the 'robust' mutex is to verify that the holder of
|
|
|
|
* the mutex is still valid. This is protection from the case
|
|
|
|
* where the holder of the mutex has exitted without unlocking it.
|
|
|
|
*/
|
2017-03-26 10:35:23 -06:00
|
|
|
|
2017-03-27 08:50:45 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_BOTH
|
2017-03-27 09:08:14 -06:00
|
|
|
#ifdef CONFIG_PTHREAD_MUTEX_TYPES
|
2019-06-30 10:35:10 -06:00
|
|
|
/* Check if this NORMAL mutex is robust */
|
2017-03-27 08:50:45 -06:00
|
|
|
|
2019-06-30 10:35:10 -06:00
|
|
|
if (mutex->pid > 0 &&
|
|
|
|
((mutex->flags & _PTHREAD_MFLAGS_ROBUST) != 0 ||
|
|
|
|
mutex->type != PTHREAD_MUTEX_NORMAL) &&
|
2020-05-09 08:04:45 -06:00
|
|
|
nxsched_get_tcb(mutex->pid) == NULL)
|
2017-03-27 08:50:45 -06:00
|
|
|
|
2017-03-27 09:08:14 -06:00
|
|
|
#else /* CONFIG_PTHREAD_MUTEX_TYPES */
|
2019-06-30 10:35:10 -06:00
|
|
|
/* Check if this NORMAL mutex is robust */
|
2017-03-27 08:50:45 -06:00
|
|
|
|
2019-06-30 10:35:10 -06:00
|
|
|
if (mutex->pid > 0 &&
|
|
|
|
(mutex->flags & _PTHREAD_MFLAGS_ROBUST) != 0 &&
|
2020-05-09 08:04:45 -06:00
|
|
|
nxsched_get_tcb(mutex->pid) == NULL)
|
2017-03-27 08:50:45 -06:00
|
|
|
|
2017-03-27 09:08:14 -06:00
|
|
|
#endif /* CONFIG_PTHREAD_MUTEX_TYPES */
|
2017-03-27 08:50:45 -06:00
|
|
|
#else /* CONFIG_PTHREAD_MUTEX_ROBUST */
|
2019-06-30 10:35:10 -06:00
|
|
|
/* This mutex is always robust, whatever type it is. */
|
2017-03-27 08:50:45 -06:00
|
|
|
|
2020-05-09 08:04:45 -06:00
|
|
|
if (mutex->pid > 0 && nxsched_get_tcb(mutex->pid) == NULL)
|
2017-03-27 08:50:45 -06:00
|
|
|
#endif
|
2019-06-30 10:35:10 -06:00
|
|
|
{
|
2020-05-09 09:05:29 -06:00
|
|
|
/* < 0: available, >0 owned, ==0 error */
|
|
|
|
|
|
|
|
DEBUGASSERT(mutex->pid != 0);
|
|
|
|
DEBUGASSERT((mutex->flags & _PTHREAD_MFLAGS_INCONSISTENT)
|
|
|
|
!= 0);
|
2017-03-26 10:35:23 -06:00
|
|
|
|
2019-06-30 10:35:10 -06:00
|
|
|
/* A thread holds the mutex, but there is no such thread.
|
|
|
|
* POSIX requires that the 'robust' mutex return EOWNERDEAD
|
|
|
|
* in this case. It is then the caller's responsibility to
|
2020-02-23 16:50:23 +08:00
|
|
|
* call pthread_mutx_consistent() to fix the mutex.
|
2019-06-30 10:35:10 -06:00
|
|
|
*/
|
2017-03-26 17:37:28 -06:00
|
|
|
|
2019-06-30 10:35:10 -06:00
|
|
|
mutex->flags |= _PTHREAD_MFLAGS_INCONSISTENT;
|
|
|
|
ret = EOWNERDEAD;
|
|
|
|
}
|
2017-03-26 10:35:23 -06:00
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
/* The mutex is locked by another, active thread */
|
2017-03-26 10:35:23 -06:00
|
|
|
|
2019-06-30 10:35:10 -06:00
|
|
|
else
|
2017-03-29 07:50:40 -06:00
|
|
|
#endif /* CONFIG_PTHREAD_MUTEX_UNSAFE */
|
2019-06-30 10:35:10 -06:00
|
|
|
{
|
|
|
|
ret = EBUSY;
|
|
|
|
}
|
2007-02-17 23:21:28 +00:00
|
|
|
}
|
|
|
|
|
2017-03-29 07:50:40 -06:00
|
|
|
/* Some other, unhandled error occurred */
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ret = status;
|
|
|
|
}
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
sched_unlock();
|
|
|
|
}
|
|
|
|
|
2016-06-11 16:42:42 -06:00
|
|
|
sinfo("Returning %d\n", ret);
|
2007-02-17 23:21:28 +00:00
|
|
|
return ret;
|
|
|
|
}
|