summaryrefslogtreecommitdiffstats
path: root/testsuites
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-18 20:43:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-09-18 20:43:48 +0000
commit975021e7ec5e462e737ad6dc47975638c692a6ad (patch)
treef8a90f7d3dde6ceefa6583bd8c2e471b52fddcf4 /testsuites
parent2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-975021e7ec5e462e737ad6dc47975638c692a6ad.tar.bz2
2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* unlimited/system.h: Support up to 10K tasks in loop. With 64MB on pc386 and configured for unified workspace, you can get close to this.
Diffstat (limited to 'testsuites')
-rw-r--r--testsuites/samples/ChangeLog6
-rw-r--r--testsuites/samples/unlimited/system.h2
2 files changed, 7 insertions, 1 deletions
diff --git a/testsuites/samples/ChangeLog b/testsuites/samples/ChangeLog
index 3e271e05b2..185139cf4f 100644
--- a/testsuites/samples/ChangeLog
+++ b/testsuites/samples/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>
+
+ * unlimited/system.h: Support up to 10K tasks in loop. With 64MB on
+ pc386 and configured for unified workspace, you can get close to
+ this.
+
2008-09-17 Joel Sherrill <joel.sherrill@oarcorp.com>
* fileio/system.h: Rename STACK_CHECKER_ON to more appropriate
diff --git a/testsuites/samples/unlimited/system.h b/testsuites/samples/unlimited/system.h
index 4da882f961..ec0ea90151 100644
--- a/testsuites/samples/unlimited/system.h
+++ b/testsuites/samples/unlimited/system.h
@@ -60,7 +60,7 @@ void test3();
* Keep track of the task id's created, use a large array.
*/
-#define MAX_TASKS (1000)
+#define MAX_TASKS (10000)
#define TASK_INDEX_OFFSET (1)
extern rtems_id task_id[MAX_TASKS];