2008-01-31 18:59:22 +01:00
|
|
|
/****************************************************************************
|
2014-08-08 22:21:48 +02:00
|
|
|
* sched/semaphore/sem_destroy.c
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2017-10-03 23:35:24 +02:00
|
|
|
* Copyright (C) 2007-2009, 2011, 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-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-02-18 00:21:28 +01:00
|
|
|
#include <semaphore.h>
|
2011-03-31 03:42:50 +02:00
|
|
|
#include <errno.h>
|
2007-02-18 00:21:28 +01:00
|
|
|
|
2014-08-08 21:53:29 +02:00
|
|
|
#include "semaphore/semaphore.h"
|
2011-03-31 06:23:17 +02: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_destroy
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2008-01-31 18:59:22 +01:00
|
|
|
* This function is used to destroy the un-named semaphore indicated by
|
2017-10-03 20:51:15 +02:00
|
|
|
* 'sem'. Only a semaphore that was created using nxsem_init() may be
|
2017-10-03 23:35:24 +02:00
|
|
|
* destroyed using nxsem_destroy(); the effect of calling nxsem_destroy() with
|
2008-01-31 18:59:22 +01:00
|
|
|
* a named semaphore is undefined. The effect of subsequent use of the
|
|
|
|
* semaphore sem is undefined until sem is re-initialized by another call
|
2017-10-03 20:51:15 +02:00
|
|
|
* to nxsem_init().
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2008-01-31 18:59:22 +01:00
|
|
|
* The effect of destroying a semaphore upon which other processes are
|
|
|
|
* currently blocked is undefined.
|
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 to be destroyed.
|
|
|
|
*
|
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
|
|
|
*
|
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_destroy (FAR sem_t *sem)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
/* Assure a valid semaphore is specified */
|
|
|
|
|
2017-10-03 23:35:24 +02:00
|
|
|
if (sem != NULL)
|
2007-02-18 00:21:28 +01:00
|
|
|
{
|
|
|
|
/* There is really no particular action that we need
|
|
|
|
* take to destroy a semaphore. We will just reset
|
2009-03-09 00:33:41 +01:00
|
|
|
* the count to some reasonable value (1) and release
|
|
|
|
* ownership.
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
|
|
|
* Check if other threads are waiting on the semaphore.
|
|
|
|
* In this case, the behavior is undefined. We will:
|
|
|
|
* leave the count unchanged but still return OK.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (sem->semcount >= 0)
|
|
|
|
{
|
|
|
|
sem->semcount = 1;
|
|
|
|
}
|
2009-03-10 12:41:20 +01:00
|
|
|
|
|
|
|
/* Release holders of the semaphore */
|
|
|
|
|
2017-10-03 20:51:15 +02:00
|
|
|
nxsem_destroyholder(sem);
|
2011-03-31 03:42:50 +02:00
|
|
|
return OK;
|
|
|
|
}
|
2017-10-03 23:35:24 +02:00
|
|
|
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sem_destroy
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This function is used to destroy the un-named semaphore indicated by
|
|
|
|
* 'sem'. Only a semaphore that was created using nxsem_init() may be
|
|
|
|
* destroyed using sem_destroy(); the effect of calling sem_destroy() with
|
|
|
|
* a named semaphore is undefined. The effect of subsequent use of the
|
|
|
|
* semaphore sem is undefined until sem is re-initialized by another call
|
|
|
|
* to nxsem_init().
|
|
|
|
*
|
|
|
|
* The effect of destroying a semaphore upon which other processes are
|
|
|
|
* currently blocked is undefined.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-10-03 23:35:24 +02:00
|
|
|
* sem - Semaphore to be destroyed.
|
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2017-10-03 23:35:24 +02:00
|
|
|
* This function is a application interface. It returns zero (OK) if
|
|
|
|
* successful. Otherwise, -1 (ERROR) is returned and the errno value is
|
|
|
|
* set appropriately.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int sem_destroy (FAR sem_t *sem)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = nxsem_destroy(sem);
|
|
|
|
if (ret < 0)
|
2011-03-31 03:42:50 +02:00
|
|
|
{
|
2017-10-03 23:35:24 +02:00
|
|
|
set_errno(-ret);
|
|
|
|
ret = ERROR;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|
2017-10-03 23:35:24 +02:00
|
|
|
|
|
|
|
return ret;
|
2007-02-18 00:21:28 +01:00
|
|
|
}
|