2011-02-02 Joel Sherrill <joel.sherrilL@OARcorp.com>

* cpuuse/tswitch.c: Shrink memory requirements.
This commit is contained in:
Joel Sherrill
2011-02-02 18:53:04 +00:00
parent 53328c8f74
commit d71a5bb638
2 changed files with 8 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2011-02-02 Joel Sherrill <joel.sherrilL@OARcorp.com>
* cpuuse/tswitch.c: Shrink memory requirements.
2011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.ac: Require autoconf-2.68, automake-1.11.1.

View File

@@ -22,11 +22,10 @@
#include "system.h"
#if BSP_SMALL_MEMORY
struct taskSwitchLog taskSwitchLog[100];
#else
struct taskSwitchLog taskSwitchLog[1000];
#endif
/*
* Only require 8 task switches on sis/gdb. --joel 2 Feb 2011
*/
struct taskSwitchLog taskSwitchLog[25];
int taskSwitchLogIndex;
volatile int testsFinished;;