summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-06 20:22:49 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-11-06 20:22:49 +0000
commit7294bc97aa8e3c572fb1937c05c6214bad1a2372 (patch)
tree9853994b54487824eb61b46be79be6b473c9f4ea /testsuites/sptests
parent2007-11-06 Glenn Humphrey <glenn.humphrey@OARcorp.com> (diff)
downloadrtems-7294bc97aa8e3c572fb1937c05c6214bad1a2372.tar.bz2
2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp13/system.h: We need 32K of message buffer memory not 32 bytes.
Diffstat (limited to 'testsuites/sptests')
-rw-r--r--testsuites/sptests/ChangeLog4
-rw-r--r--testsuites/sptests/sp13/system.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/testsuites/sptests/ChangeLog b/testsuites/sptests/ChangeLog
index 6b59b6d81e..fe5ebb349b 100644
--- a/testsuites/sptests/ChangeLog
+++ b/testsuites/sptests/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-06 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * sp13/system.h: We need 32K of message buffer memory not 32 bytes.
+
2007-10-18 Glenn Humphrey <glenn.humphrey@OARcorp.com>
* sp09/screen06.c, sp09/screen14.c, sp13/sp13.scn, sp13/task1.c,
diff --git a/testsuites/sptests/sp13/system.h b/testsuites/sptests/sp13/system.h
index 88483f3769..53b76b124b 100644
--- a/testsuites/sptests/sp13/system.h
+++ b/testsuites/sptests/sp13/system.h
@@ -3,7 +3,7 @@
* This include file contains information that is included in every
* function in the test set.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-20007.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -53,7 +53,7 @@ rtems_task Task_3(
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
-#define CONFIGURE_MESSAGE_BUFFER_MEMORY 32
+#define CONFIGURE_MESSAGE_BUFFER_MEMORY (32 * 1024)
#define CONFIGURE_EXTRA_TASK_STACKS (3 * RTEMS_MINIMUM_STACK_SIZE)
#include <rtems/confdefs.h>