From 9c22907122581564091d16c325afb6efbb871ca0 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Mon, 18 May 2009 23:50:10 +0000 Subject: 2009-05-19 Chris Johns * cpuuse/tswitch.c: Lower sample count for small memory targets. * cpuuse/system.h: Smaller stack size for small memory targets. * monitor02/init.c: Cannot run on small memory targets. --- testsuites/libtests/cpuuse/system.h | 6 ++++-- testsuites/libtests/cpuuse/tswitch.c | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'testsuites/libtests/cpuuse') diff --git a/testsuites/libtests/cpuuse/system.h b/testsuites/libtests/cpuuse/system.h index 8e7b206e33..a996fd4df4 100644 --- a/testsuites/libtests/cpuuse/system.h +++ b/testsuites/libtests/cpuuse/system.h @@ -13,6 +13,7 @@ * $Id$ */ +#include #include /* functions */ @@ -46,11 +47,12 @@ void Task_switch( #define CONFIGURE_MAXIMUM_USER_EXTENSIONS 1 #define CONFIGURE_MAXIMUM_TASKS 4 #define CONFIGURE_TICKS_PER_TIMESLICE 100 +#if !BSP_SMALL_MEMORY +#define CONFIGURE_EXTRA_TASK_STACKS (6 * RTEMS_MINIMUM_STACK_SIZE) +#endif #define CONFIGURE_RTEMS_INIT_TASKS_TABLE -#define CONFIGURE_EXTRA_TASK_STACKS (6 * RTEMS_MINIMUM_STACK_SIZE) - #include /* global variables */ diff --git a/testsuites/libtests/cpuuse/tswitch.c b/testsuites/libtests/cpuuse/tswitch.c index e84c878b0c..3e0b09741e 100644 --- a/testsuites/libtests/cpuuse/tswitch.c +++ b/testsuites/libtests/cpuuse/tswitch.c @@ -22,7 +22,11 @@ #include "system.h" +#if BSP_SMALL_MEMORY +struct taskSwitchLog taskSwitchLog[100]; +#else struct taskSwitchLog taskSwitchLog[1000]; +#endif int taskSwitchLogIndex; volatile int testsFinished;; @@ -63,3 +67,4 @@ rtems_extension Task_switch( break; } } + -- cgit v1.2.3