2009-08-16 13:07:24 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2014-07-26 09:06:28 +00:00
|
|
|
2011,2012,2013,2014 Giovanni Di Sirio.
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
2011-12-12 18:07:19 +00:00
|
|
|
Concepts and parts of this file have been contributed by Leon Woestenberg.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-27 08:54:22 +00:00
|
|
|
* @file chcond.h
|
2010-02-06 12:31:09 +00:00
|
|
|
* @brief Condition Variables macros and structures.
|
|
|
|
*
|
2009-08-30 06:59:43 +00:00
|
|
|
* @addtogroup condvars
|
2009-08-16 13:07:24 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#ifndef _CHCOND_H_
|
|
|
|
#define _CHCOND_H_
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2013-07-20 10:12:44 +00:00
|
|
|
#if CH_CFG_USE_CONDVARS || defined(__DOXYGEN__)
|
2009-10-17 09:40:49 +00:00
|
|
|
|
2013-07-19 13:17:42 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Module constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Module pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-07-20 10:12:44 +00:00
|
|
|
#if !CH_CFG_USE_MUTEXES
|
|
|
|
#error "CH_CFG_USE_CONDVARS requires CH_CFG_USE_MUTEXES"
|
2009-10-17 09:40:49 +00:00
|
|
|
#endif
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2013-07-19 13:17:42 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Module data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-08-16 13:07:24 +00:00
|
|
|
/**
|
2013-07-19 13:17:42 +00:00
|
|
|
* @brief condition_variable_t structure.
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2013-07-19 13:17:42 +00:00
|
|
|
typedef struct condition_variable {
|
|
|
|
threads_queue_t c_queue; /**< @brief Condition variable
|
|
|
|
threads queue. */
|
|
|
|
} condition_variable_t;
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2013-07-19 13:17:42 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Module macros. */
|
|
|
|
/*===========================================================================*/
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Data part of a static condition variable initializer.
|
|
|
|
* @details This macro should be used when statically initializing a condition
|
|
|
|
* variable that is part of a bigger structure.
|
2010-02-06 12:31:09 +00:00
|
|
|
*
|
|
|
|
* @param[in] name the name of the condition variable
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2013-07-19 09:43:11 +00:00
|
|
|
#define _CONDVAR_DATA(name) {_threads_queue_t_DATA(name.c_queue)}
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Static condition variable initializer.
|
|
|
|
* @details Statically initialized condition variables require no explicit
|
|
|
|
* initialization using @p chCondInit().
|
2010-02-06 12:31:09 +00:00
|
|
|
*
|
|
|
|
* @param[in] name the name of the condition variable
|
2009-08-16 13:07:24 +00:00
|
|
|
*/
|
2013-07-19 13:17:42 +00:00
|
|
|
#define CONDVAR_DECL(name) condition_variable_t name = _CONDVAR_DATA(name)
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-07-20 07:24:12 +00:00
|
|
|
void chCondObjectInit(condition_variable_t *cp);
|
2013-07-19 13:17:42 +00:00
|
|
|
void chCondSignal(condition_variable_t *cp);
|
|
|
|
void chCondSignalI(condition_variable_t *cp);
|
|
|
|
void chCondBroadcast(condition_variable_t *cp);
|
|
|
|
void chCondBroadcastI(condition_variable_t *cp);
|
|
|
|
msg_t chCondWait(condition_variable_t *cp);
|
|
|
|
msg_t chCondWaitS(condition_variable_t *cp);
|
2013-07-20 10:12:44 +00:00
|
|
|
#if CH_CFG_USE_CONDVARS_TIMEOUT
|
2013-07-19 13:17:42 +00:00
|
|
|
msg_t chCondWaitTimeout(condition_variable_t *cp, systime_t time);
|
|
|
|
msg_t chCondWaitTimeoutS(condition_variable_t *cp, systime_t time);
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Module inline functions. */
|
|
|
|
/*===========================================================================*/
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2013-07-20 10:12:44 +00:00
|
|
|
#endif /* CH_CFG_USE_CONDVARS */
|
2009-08-16 13:07:24 +00:00
|
|
|
|
2010-02-27 08:54:22 +00:00
|
|
|
#endif /* _CHCOND_H_ */
|
2009-08-16 13:07:24 +00:00
|
|
|
|
|
|
|
/** @} */
|