From cf204e72ea5fd6e4be8b3295cb148fde5fdd47d2 Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 16 Feb 2016 10:07:00 +0000 Subject: Tree reorganization. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@8900 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chcond.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'os/rt/include/chcond.h') diff --git a/os/rt/include/chcond.h b/os/rt/include/chcond.h index e8620e9c5..57b1f73f0 100644 --- a/os/rt/include/chcond.h +++ b/os/rt/include/chcond.h @@ -57,7 +57,7 @@ * @brief condition_variable_t structure. */ typedef struct condition_variable { - threads_queue_t c_queue; /**< @brief Condition variable + threads_queue_t queue; /**< @brief Condition variable threads queue. */ } condition_variable_t; @@ -72,7 +72,7 @@ typedef struct condition_variable { * * @param[in] name the name of the condition variable */ -#define _CONDVAR_DATA(name) {_THREADS_QUEUE_DATA(name.c_queue)} +#define _CONDVAR_DATA(name) {_THREADS_QUEUE_DATA(name.queue)} /** * @brief Static condition variable initializer. -- cgit v1.2.3