From 7d689a5fae4f0950c8cb8e291744465ea5d2ca93 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 20 Oct 2009 17:26:27 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1242 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- test/testdyn.c | 2 +- test/testheap.c | 4 ++-- test/testpools.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'test') diff --git a/test/testdyn.c b/test/testdyn.c index 07c3f92a0..5b024544f 100644 --- a/test/testdyn.c +++ b/test/testdyn.c @@ -145,7 +145,7 @@ static char *dyn2_gettest(void) { static void dyn2_setup(void) { - chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE)); + chPoolInit(&mp1, THD_WA_SIZE(THREADS_STACK_SIZE), NULL); } static void dyn2_execute(void) { diff --git a/test/testheap.c b/test/testheap.c index ce127d2be..fe06a0cf5 100644 --- a/test/testheap.c +++ b/test/testheap.c @@ -25,10 +25,10 @@ * @page test_heap Memory Heap test * *

Description

- * This module implements the test sequence for the @ref heap subsystem. + * This module implements the test sequence for the @ref heaps subsystem. * *

Objective

- * Objective of the test module is to cover 100% of the @ref heap subsystem. + * Objective of the test module is to cover 100% of the @ref heaps subsystem. * *

Preconditions

* The module requires the following kernel options: 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) { -- cgit v1.2.3