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
|
|
|
*
|
2021-02-08 16:33:58 +01: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
|
|
|
*
|
2021-02-08 16:33:58 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 00:21:28 +01:00
|
|
|
*
|
2021-02-08 16:33:58 +01: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>
|
|
|
|
|
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
|
|
|
}
|