aboutsummaryrefslogtreecommitdiffstats
path: root/os/rt/include/chthreads.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-09-10 10:18:02 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2014-09-10 10:18:02 +0000
commit530c3a6f9e58a9b7dd2439424bde767d136cbef3 (patch)
tree3a227e5b972fe610f15dfb7639a15869ca7b73a7 /os/rt/include/chthreads.h
parente5f3bc7f8640f4f145dfcacae49d6089d4c82a34 (diff)
downloadChibiOS-530c3a6f9e58a9b7dd2439424bde767d136cbef3.tar.gz
ChibiOS-530c3a6f9e58a9b7dd2439424bde767d136cbef3.tar.bz2
ChibiOS-530c3a6f9e58a9b7dd2439424bde767d136cbef3.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7254 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chthreads.h')
-rw-r--r--os/rt/include/chthreads.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/os/rt/include/chthreads.h b/os/rt/include/chthreads.h
index 5c270f9b2..03ac3fba7 100644
--- a/os/rt/include/chthreads.h
+++ b/os/rt/include/chthreads.h
@@ -168,7 +168,7 @@ typedef msg_t (*tfunc_t)(void *);
*
* @param[in] name the name of the threads queue variable
*/
-#define _threads_queue_t_DATA(name) {(thread_t *)&name, (thread_t *)&name}
+#define _THREADS_QUEUE_DATA(name) {(thread_t *)&name, (thread_t *)&name}
/**
* @brief Static threads queue object initializer.
@@ -177,8 +177,8 @@ typedef msg_t (*tfunc_t)(void *);
*
* @param[in] name the name of the threads queue variable
*/
-#define threads_queue_t_DECL(name) \
- threads_queue_t name = _threads_queue_t_DATA(name)
+#define _THREADS_QUEUE_DECL(name) \
+ threads_queue_t name = _THREADS_QUEUE_DATA(name)
/** @} */
/**