diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-05 20:19:20 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-03-05 20:19:20 +0000 |
commit | 8f15a800ee63f1f2d44f3ca24d2415b410919a05 (patch) | |
tree | e1d09be4991b4555c42c8c07e6a8af7f39017dbf /test | |
parent | a528517b440c7b45ad4da7e7ae8c66247dc7c2f0 (diff) | |
download | ChibiOS-8f15a800ee63f1f2d44f3ca24d2415b410919a05.tar.gz ChibiOS-8f15a800ee63f1f2d44f3ca24d2415b410919a05.tar.bz2 ChibiOS-8f15a800ee63f1f2d44f3ca24d2415b410919a05.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1715 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test')
-rw-r--r-- | test/testmtx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testmtx.c b/test/testmtx.c index 7a31ac5f1..2ac3059b3 100644 --- a/test/testmtx.c +++ b/test/testmtx.c @@ -68,7 +68,9 @@ */
static MUTEX_DECL(m1);
static MUTEX_DECL(m2);
+#if CH_USE_CONDVARS
static CONDVAR_DECL(c1);
+#endif
/**
* @page test_mtx_001 Priority enqueuing test
|