2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* include/semaphore.h
|
2007-02-17 23:21:28 +00:00
|
|
|
*
|
2013-01-06 17:34:03 +00:00
|
|
|
* Copyright (C) 2007-2009, 2012-2013 Gregory Nutt. All rights reserved.
|
2012-03-23 20:14:21 +00:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-02-17 23:21:28 +00: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 17:59:22 +00:00
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
2007-02-17 23:21:28 +00: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 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-03-23 20:14:21 +00:00
|
|
|
#ifndef __INCLUDE_SEMAPHORE_H
|
|
|
|
#define __INCLUDE_SEMAPHORE_H
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Included Files
|
2008-01-31 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2009-12-14 23:32:23 +00:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2007-03-20 16:51:12 +00:00
|
|
|
#include <limits.h>
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2014-05-08 16:58:10 -06:00
|
|
|
extern "C"
|
|
|
|
{
|
2007-02-17 23:21:28 +00:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
2009-12-14 23:32:23 +00:00
|
|
|
* Pre-processor Definitions
|
2008-01-31 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Type Declarations
|
2008-01-31 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2012-08-26 21:35:14 +00:00
|
|
|
/* This structure contains information about the holder of a semaphore */
|
2009-03-10 11:41:20 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2013-02-04 18:46:28 +00:00
|
|
|
struct tcb_s; /* Forward reference */
|
2009-03-10 11:41:20 +00:00
|
|
|
struct semholder_s
|
|
|
|
{
|
2009-03-13 00:25:05 +00:00
|
|
|
#if CONFIG_SEM_PREALLOCHOLDERS > 0
|
2012-08-26 21:35:14 +00:00
|
|
|
struct semholder_s *flink; /* Implements singly linked list */
|
2009-03-10 11:41:20 +00:00
|
|
|
#endif
|
2013-02-04 18:46:28 +00:00
|
|
|
FAR struct tcb_s *htcb; /* Holder TCB */
|
2012-08-26 21:35:14 +00:00
|
|
|
int16_t counts; /* Number of counts owned by this holder */
|
2009-03-10 11:41:20 +00:00
|
|
|
};
|
2012-02-05 17:36:13 +00:00
|
|
|
|
|
|
|
#if CONFIG_SEM_PREALLOCHOLDERS > 0
|
|
|
|
# define SEMHOLDER_INITIALIZER {NULL, NULL, 0}
|
|
|
|
#else
|
|
|
|
# define SEMHOLDER_INITIALIZER {NULL, 0}
|
2009-03-10 11:41:20 +00:00
|
|
|
#endif
|
2012-02-05 17:36:13 +00:00
|
|
|
#endif /* CONFIG_PRIORITY_INHERITANCE */
|
2009-03-10 11:41:20 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
/* This is the generic semaphore structure. */
|
|
|
|
|
|
|
|
struct sem_s
|
|
|
|
{
|
2012-08-26 21:35:14 +00:00
|
|
|
int16_t semcount; /* >0 -> Num counts available */
|
|
|
|
/* <0 -> Num tasks waiting for semaphore */
|
|
|
|
/* If priority inheritance is enabled, then we have to keep track of which
|
|
|
|
* tasks hold references to the semaphore.
|
|
|
|
*/
|
|
|
|
|
2009-03-08 23:33:41 +00:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2012-08-26 21:35:14 +00:00
|
|
|
# if CONFIG_SEM_PREALLOCHOLDERS > 0
|
|
|
|
FAR struct semholder_s *hhead; /* List of holders of semaphore counts */
|
|
|
|
# else
|
|
|
|
struct semholder_s holder; /* Single holder */
|
|
|
|
# endif
|
2009-03-08 23:33:41 +00:00
|
|
|
#endif
|
2007-02-17 23:21:28 +00:00
|
|
|
};
|
2012-08-26 21:35:14 +00:00
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
typedef struct sem_s sem_t;
|
|
|
|
|
2012-03-23 20:14:21 +00:00
|
|
|
/* Initializers */
|
|
|
|
|
2012-02-05 17:36:13 +00:00
|
|
|
#ifdef CONFIG_PRIORITY_INHERITANCE
|
2013-01-06 17:34:03 +00:00
|
|
|
# if CONFIG_SEM_PREALLOCHOLDERS > 0
|
|
|
|
# define SEM_INITIALIZER(c) {(c), NULL} /* semcount, hhead */
|
|
|
|
# else
|
|
|
|
# define SEM_INITIALIZER(c) {(c), SEMHOLDER_INITIALIZER} /* semcount, holder */
|
|
|
|
# endif
|
2012-02-05 17:36:13 +00:00
|
|
|
#else
|
2013-01-06 17:34:03 +00:00
|
|
|
# define SEM_INITIALIZER(c) {(c)} /* semcount */
|
2012-02-05 17:36:13 +00:00
|
|
|
#endif
|
|
|
|
|
2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Variables
|
2008-01-31 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2008-01-31 17:59:22 +00:00
|
|
|
/****************************************************************************
|
2007-02-17 23:21:28 +00:00
|
|
|
* Public Function Prototypes
|
2008-01-31 17:59:22 +00:00
|
|
|
****************************************************************************/
|
2011-07-19 13:40:15 +00:00
|
|
|
/* Forward references needed by some prototypes */
|
|
|
|
|
|
|
|
struct timespec; /* Defined in time.h */
|
2007-02-17 23:21:28 +00:00
|
|
|
|
|
|
|
/* Counting Semaphore Interfaces (based on POSIX APIs) */
|
|
|
|
|
2014-05-08 16:58:10 -06:00
|
|
|
int sem_init(FAR sem_t *sem, int pshared, unsigned int value);
|
|
|
|
int sem_destroy(FAR sem_t *sem);
|
|
|
|
int sem_wait(FAR sem_t *sem);
|
|
|
|
int sem_timedwait(FAR sem_t *sem, FAR const struct timespec *abstime);
|
|
|
|
int sem_trywait(FAR sem_t *sem);
|
|
|
|
int sem_post(FAR sem_t *sem);
|
|
|
|
int sem_getvalue(FAR sem_t *sem, FAR int *sval);
|
2007-02-17 23:21:28 +00:00
|
|
|
|
2014-09-28 12:19:01 -06:00
|
|
|
#ifdef CONFIG_FS_NAMED_SEMAPHORES
|
|
|
|
FAR sem_t *sem_open(FAR const char *name, int oflag, ...);
|
|
|
|
int sem_close(FAR sem_t *sem);
|
|
|
|
int sem_unlink(FAR const char *name);
|
|
|
|
#endif
|
|
|
|
|
2007-02-17 23:21:28 +00:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-23 20:14:21 +00:00
|
|
|
#endif /* __INCLUDE_SEMAPHORE_H */
|