2009-05-19 Chris Johns <chrisj@rtems.org>

* sp04/tswitch.c: Lower sample count for small memory targets.
This commit is contained in:
Chris Johns
2009-05-18 23:49:15 +00:00
parent 36980c10c9
commit a1c219b8fd
2 changed files with 8 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
2009-05-19 Chris Johns <chrisj@rtems.org>
* sp04/tswitch.c: Lower sample count for small memory targets.
2009-05-15 Joel Sherrill <joel.sherrill@OARcorp.com>
* spprintk/init.c: printk() now 100% covered.

View File

@@ -22,7 +22,11 @@
#include "system.h"
#if BSP_SMALL_MEMORY
struct taskSwitchLog taskSwitchLog[100];
#else
struct taskSwitchLog taskSwitchLog[1000];
#endif
unsigned int taskSwitchLogIndex;
volatile int testsFinished;