summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/unlimited/system.h
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/samples/unlimited/system.h
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/samples/unlimited/system.h')
-rw-r--r--testsuites/samples/unlimited/system.h2
1 files changed, 1 insertions, 1 deletions
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];