diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-19 10:11:25 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-19 10:11:25 +0000 |
commit | a31833f2a75fa594f64e179375dcb633f19e590b (patch) | |
tree | 4137c3d075e2639489af09fe881906894cd589f4 /os | |
parent | 3a504e26ce59c61235bb18930225b8104fafbaad (diff) | |
download | ChibiOS-a31833f2a75fa594f64e179375dcb633f19e590b.tar.gz ChibiOS-a31833f2a75fa594f64e179375dcb633f19e590b.tar.bz2 ChibiOS-a31833f2a75fa594f64e179375dcb633f19e590b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@5990 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/kernel/include/chlists.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/os/kernel/include/chlists.h b/os/kernel/include/chlists.h index 2698b2129..ec5bd4c9c 100644 --- a/os/kernel/include/chlists.h +++ b/os/kernel/include/chlists.h @@ -65,7 +65,8 @@ *
* @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_t_DECL(name) \
+ threads_queue_t name = _threads_queue_t_DATA(name)
/*===========================================================================*/
/* External declarations. */
|