From 3b9ae6825f753e21f2db109d7b1005a6acfe475c Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 10 Sep 2014 12:35:59 +0000 Subject: Added function chThdQueueIsEmptyI(), fixed a naming error in threads queues static initializer. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7255 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/rt/include/chcond.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'os/rt/include/chcond.h') diff --git a/os/rt/include/chcond.h b/os/rt/include/chcond.h index 94be40c74..80c3651c7 100644 --- a/os/rt/include/chcond.h +++ b/os/rt/include/chcond.h @@ -73,7 +73,7 @@ typedef struct condition_variable { * * @param[in] name the name of the condition variable */ -#define _CONDVAR_DATA(name) {_threads_queue_t_DATA(name.c_queue)} +#define _CONDVAR_DATA(name) {_THREADS_QUEUE_DATA(name.c_queue)} /** * @brief Static condition variable initializer. -- cgit v1.2.3