2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 21:53:29 +02:00
|
|
|
* sched/semaphore/sem_post.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2017-10-03 23:35:24 +02:00
|
|
|
* Copyright (C) 2007-2009, 2012-2013, 2016-2017 Gregory Nutt. All rights
|
|
|
|
* reserved.
|
2012-03-23 21:14:21 +01: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-31 18:59:22 +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-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Included Files
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-03-20 17:51:12 +01:00
|
|
|
#include <limits.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <semaphore.h>
|
2016-06-28 16:06:30 +02:00
|
|
|
#include <errno.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <sched.h>
|
2016-02-14 15:17:46 +01:00
|
|
|
|
|
|
|
#include <nuttx/irq.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
#include <nuttx/arch.h>
|
2009-12-14 19:39:29 +01:00
|
|
|
|
2014-08-09 01:53:55 +02:00
|
|
|
#include "sched/sched.h"
|
2014-08-08 21:53:29 +02:00
|
|
|
#include "semaphore/semaphore.h"
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2007-02-18 00:21:28 +01:00
|
|
|
* Public Functions
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2017-10-03 23:35:24 +02:00
|
|
|
* Name: nxsem_post
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2017-10-03 23:35:24 +02:00
|
|
|
* When a kernel thread has finished with a semaphore, it will call
|
|
|
|
* nxsem_post(). This function unlocks the semaphore referenced by sem
|
|
|
|
* by performing the semaphore unlock operation on that semaphore.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* If the semaphore value resulting from this operation is positive, then
|
|
|
|
* no tasks were blocked waiting for the semaphore to become unlocked; the
|
|
|
|
* semaphore is simply incremented.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* If the value of the semaphore resulting from this operation is zero,
|
|
|
|
* then one of the tasks blocked waiting for the semaphore shall be
|
2017-10-04 23:22:27 +02:00
|
|
|
* allowed to return successfully from its call to nxsem_wait().
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-02-18 00:21:28 +01:00
|
|
|
* sem - Semaphore descriptor
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2017-10-03 23:35:24 +02:00
|
|
|
* This is an internal OS interface and should not be used by applications.
|
|
|
|
* It follows the NuttX internal error return policy: Zero (OK) is
|
|
|
|
* returned on success. A negated errno value is returned on failure.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Assumptions:
|
2014-11-07 22:54:24 +01:00
|
|
|
* This function may be called from an interrupt handler.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
****************************************************************************/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2017-10-03 23:35:24 +02:00
|
|
|
int nxsem_post(FAR sem_t *sem)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2013-02-04 19:46:28 +01:00
|
|
|
FAR struct tcb_s *stcb = NULL;
|
2016-02-14 15:17:46 +01:00
|
|
|
irqstate_t flags;
|
2017-10-03 23:35:24 +02:00
|
|
|
int ret = -EINVAL;
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
/* Make sure we were supplied with a valid semaphore. */
|
|
|
|
|
2017-10-03 23:35:24 +02:00
|
|
|
if (sem != NULL)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
/* The following operations must be performed with interrupts
|
|
|
|
* disabled because sem_post() may be called from an interrupt
|
|
|
|
* handler.
|
|
|
|
*/
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
flags = enter_critical_section();
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2016-11-05 16:44:29 +01:00
|
|
|
/* Perform the semaphore unlock operation, releasing this task as a
|
|
|
|
* holder then also incrementing the count on the semaphore.
|
|
|
|
*
|
|
|
|
* NOTE: When semaphores are used for signaling purposes, the holder
|
|
|
|
* of the semaphore may not be this thread! In this case,
|
2017-10-03 20:51:15 +02:00
|
|
|
* nxsem_releaseholder() will do nothing.
|
2016-11-05 16:44:29 +01:00
|
|
|
*
|
|
|
|
* In the case of a mutex this could be simply resolved since there is
|
|
|
|
* only one holder but for the case of counting semaphores, there may
|
|
|
|
* be many holders and if the holder is not this thread, then it is
|
|
|
|
* not possible to know which thread/holder should be released.
|
|
|
|
*
|
|
|
|
* For this reason, it is recommended that priority inheritance be
|
2018-09-10 19:32:09 +02:00
|
|
|
* disabled via nxsem_setprotocol(SEM_PRIO_NONE) when the semaphore is
|
|
|
|
* initialized if the semaphore is to used for signaling purposes.
|
2016-11-05 16:44:29 +01:00
|
|
|
*/
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2018-08-24 14:58:30 +02:00
|
|
|
DEBUGASSERT(sem->semcount < SEM_VALUE_MAX);
|
2017-10-03 20:51:15 +02:00
|
|
|
nxsem_releaseholder(sem);
|
2007-02-18 00:21:28 +01:00
|
|
|
sem->semcount++;
|
|
|
|
|
2009-03-12 02:53:20 +01:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2012-08-28 16:40:12 +02:00
|
|
|
/* Don't let any unblocked tasks run until we complete any priority
|
|
|
|
* restoration steps. Interrupts are disabled, but we do not want
|
|
|
|
* the head of the read-to-run list to be modified yet.
|
|
|
|
*
|
|
|
|
* NOTE: If this sched_lock is called from an interrupt handler, it
|
|
|
|
* will do nothing.
|
2009-03-12 02:53:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
sched_lock();
|
|
|
|
#endif
|
2012-08-28 16:40:12 +02:00
|
|
|
/* If the result of of semaphore unlock is non-positive, then
|
|
|
|
* there must be some task waiting for the semaphore.
|
|
|
|
*/
|
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
if (sem->semcount <= 0)
|
|
|
|
{
|
|
|
|
/* Check if there are any tasks in the waiting for semaphore
|
|
|
|
* task list that are waiting for this semaphore. This is a
|
|
|
|
* prioritized list so the first one we encounter is the one
|
|
|
|
* that we want.
|
|
|
|
*/
|
|
|
|
|
2015-10-08 03:59:14 +02:00
|
|
|
for (stcb = (FAR struct tcb_s *)g_waitingforsemaphore.head;
|
2007-03-10 01:17:29 +01:00
|
|
|
(stcb && stcb->waitsem != sem);
|
2007-02-18 00:21:28 +01:00
|
|
|
stcb = stcb->flink);
|
|
|
|
|
2016-10-26 15:23:15 +02:00
|
|
|
if (stcb != NULL)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
2016-10-26 15:23:15 +02:00
|
|
|
/* The task will be the new holder of the semaphore when
|
|
|
|
* it is awakened.
|
|
|
|
*/
|
|
|
|
|
2017-10-03 20:51:15 +02:00
|
|
|
nxsem_addholder_tcb(stcb, sem);
|
2016-10-26 15:23:15 +02:00
|
|
|
|
2007-02-18 00:21:28 +01:00
|
|
|
/* It is, let the task take the semaphore */
|
|
|
|
|
|
|
|
stcb->waitsem = NULL;
|
|
|
|
|
|
|
|
/* Restart the waiting task. */
|
|
|
|
|
|
|
|
up_unblock_task(stcb);
|
|
|
|
}
|
2018-09-10 19:32:09 +02:00
|
|
|
#if 0 /* REVISIT: This can fire on IOB throttle semaphore */
|
2018-01-19 14:11:09 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This should not happen. */
|
|
|
|
|
2018-01-19 16:07:19 +01:00
|
|
|
DEBUGPANIC();
|
2018-01-19 14:11:09 +01:00
|
|
|
}
|
2018-09-10 19:32:09 +02:00
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2009-03-09 00:33:41 +01:00
|
|
|
|
2009-03-10 12:41:20 +01:00
|
|
|
/* Check if we need to drop the priority of any threads holding
|
|
|
|
* this semaphore. The priority could have been boosted while they
|
|
|
|
* held the semaphore.
|
2009-03-09 00:33:41 +01:00
|
|
|
*/
|
|
|
|
|
2009-03-12 02:53:20 +01:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2017-10-03 20:51:15 +02:00
|
|
|
nxsem_restorebaseprio(stcb, sem);
|
2009-03-12 02:53:20 +01:00
|
|
|
sched_unlock();
|
|
|
|
#endif
|
2007-02-18 00:21:28 +01:00
|
|
|
ret = OK;
|
|
|
|
|
|
|
|
/* Interrupts may now be enabled. */
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
leave_critical_section(flags);
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2017-10-03 23:35:24 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sem_post
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* When a task has finished with a semaphore, it will call sem_post().
|
|
|
|
* This function unlocks the semaphore referenced by sem by performing the
|
|
|
|
* semaphore unlock operation on that semaphore.
|
|
|
|
*
|
|
|
|
* If the semaphore value resulting from this operation is positive, then
|
|
|
|
* no tasks were blocked waiting for the semaphore to become unlocked; the
|
|
|
|
* semaphore is simply incremented.
|
|
|
|
*
|
|
|
|
* If the value of the semaphore resulting from this operation is zero,
|
|
|
|
* then one of the tasks blocked waiting for the semaphore shall be
|
2017-10-04 23:22:27 +02:00
|
|
|
* allowed to return successfully from its call to nxsem_wait().
|
2017-10-03 23:35:24 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-10-03 23:35:24 +02:00
|
|
|
* sem - Semaphore descriptor
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2017-10-03 23:35:24 +02:00
|
|
|
* This function is a standard, POSIX application interface. It will
|
|
|
|
* return zero (OK) if successful. Otherwise, -1 (ERROR) is returned and
|
|
|
|
* the errno value is set appropriately.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* This function may be called from an interrupt handler.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int sem_post(FAR sem_t *sem)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nxsem_post(sem);
|
|
|
|
if (ret < 0)
|
2016-06-28 16:06:30 +02:00
|
|
|
{
|
2017-10-03 23:35:24 +02:00
|
|
|
set_errno(-ret);
|
|
|
|
ret = ERROR;
|
2016-06-28 16:06:30 +02:00
|
|
|
}
|
2007-02-18 00:21:28 +01:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|