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
|
|
|
*
|
2020-05-10 15:13:21 +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-10 15:13:21 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2020-05-10 15:13:21 +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-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>
|
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
|
|
|
|
2020-04-21 08:05:21 +02:00
|
|
|
/* Check the maximum allowable value */
|
|
|
|
|
|
|
|
if (sem->semcount >= SEM_VALUE_MAX)
|
|
|
|
{
|
|
|
|
leave_critical_section(flags);
|
|
|
|
return -EOVERFLOW;
|
|
|
|
}
|
|
|
|
|
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,
|
2020-05-10 15:13:21 +02:00
|
|
|
* nxsem_release_holder() 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
|
2020-05-17 15:56:21 +02:00
|
|
|
* disabled via nxsem_set_protocol(SEM_PRIO_NONE) when the semaphore is
|
2018-09-10 19:32:09 +02:00
|
|
|
* 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
|
|
|
|
2020-05-10 15:13:21 +02:00
|
|
|
nxsem_release_holder(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
|
2019-09-11 16:56:56 +02:00
|
|
|
* the head of the ready-to-run list to be modified yet.
|
2012-08-28 16:40:12 +02:00
|
|
|
*
|
|
|
|
* 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
|
2020-03-16 20:42:34 +01:00
|
|
|
/* If the result of semaphore unlock is non-positive, then
|
2012-08-28 16:40:12 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2020-05-10 15:13:21 +02:00
|
|
|
nxsem_add_holder_tcb(stcb, sem);
|
2016-10-26 15:23:15 +02:00
|
|
|
|
2022-02-16 06:37:38 +01:00
|
|
|
/* Stop the watchdog timer */
|
|
|
|
|
|
|
|
wd_cancel(&stcb->waitdog);
|
|
|
|
|
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
|
2020-05-10 15:13:21 +02:00
|
|
|
nxsem_restore_baseprio(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;
|
|
|
|
}
|