aboutsummaryrefslogtreecommitdiffstats
path: root/test/testpools.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-20 17:26:27 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-10-20 17:26:27 +0000
commit7d689a5fae4f0950c8cb8e291744465ea5d2ca93 (patch)
treed9b262059d69cbe25cdcf1c9aa4f0e6f2f342337 /test/testpools.c
parent2c41c0d442aa3cea412fba318d4fe0a7cfd276d6 (diff)
downloadChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.tar.gz
ChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.tar.bz2
ChibiOS-7d689a5fae4f0950c8cb8e291744465ea5d2ca93.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1242 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'test/testpools.c')
-rw-r--r--test/testpools.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/testpools.c b/test/testpools.c
index 97356126e..b48290b87 100644
--- a/test/testpools.c
+++ b/test/testpools.c
@@ -48,7 +48,7 @@
#if CH_USE_MEMPOOLS
-static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE));
+static MEMORYPOOL_DECL(mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
/**
* @page test_pools_001 Allocation and enqueuing test
@@ -66,7 +66,7 @@ static char *pools1_gettest(void) {
static void pools1_setup(void) {
- chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE));
+ chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL);
}
static void pools1_execute(void) {