summaryrefslogtreecommitdiffstats
path: root/testsuites/mptests
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-09-19 14:53:29 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-09-19 14:53:29 +0000
commit3652ad356bf13abe0963c992cbbda96476d31609 (patch)
tree8ae01f1eec49c8fabc0a3db3d5b58b29a61428f2 /testsuites/mptests
parentInitial attempt at building HP PA-RISC using Solaris hosted tools. (diff)
downloadrtems-3652ad356bf13abe0963c992cbbda96476d31609.tar.bz2
Minor bug fixes to get all targets compilable and running. The
single biggest changes were the expansion of the workspace size macro to include other types of objects and the increase in the minimum stack size for most CPUs.
Diffstat (limited to 'testsuites/mptests')
-rw-r--r--testsuites/mptests/mp01/init.c6
-rw-r--r--testsuites/mptests/mp02/init.c2
-rw-r--r--testsuites/mptests/mp03/init.c2
-rw-r--r--testsuites/mptests/mp04/init.c2
-rw-r--r--testsuites/mptests/mp05/init.c2
-rw-r--r--testsuites/mptests/mp06/init.c2
-rw-r--r--testsuites/mptests/mp07/init.c2
-rw-r--r--testsuites/mptests/mp08/init.c2
-rw-r--r--testsuites/mptests/mp09/init.c2
-rw-r--r--testsuites/mptests/mp10/init.c6
-rw-r--r--testsuites/mptests/mp11/init.c2
-rw-r--r--testsuites/mptests/mp13/init.c4
-rw-r--r--testsuites/mptests/mp14/init.c8
13 files changed, 21 insertions, 21 deletions
diff --git a/testsuites/mptests/mp01/init.c b/testsuites/mptests/mp01/init.c
index 1a4c9463e4..888151761f 100644
--- a/testsuites/mptests/mp01/init.c
+++ b/testsuites/mptests/mp01/init.c
@@ -53,7 +53,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_GLOBAL,
&Task_id[ 1 ]
@@ -64,7 +64,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 2 ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Task_id[ 2 ]
@@ -75,7 +75,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 3 ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 3 ]
diff --git a/testsuites/mptests/mp02/init.c b/testsuites/mptests/mp02/init.c
index 22e145d6c6..723e4ff5cd 100644
--- a/testsuites/mptests/mp02/init.c
+++ b/testsuites/mptests/mp02/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[Multiprocessing_configuration.node],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_NO_PREEMPT,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp03/init.c b/testsuites/mptests/mp03/init.c
index 861a77ef2d..9be30fd92e 100644
--- a/testsuites/mptests/mp03/init.c
+++ b/testsuites/mptests/mp03/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ Multiprocessing_configuration.node ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_NO_PREEMPT,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp04/init.c b/testsuites/mptests/mp04/init.c
index adc21b9f0c..e3de164f09 100644
--- a/testsuites/mptests/mp04/init.c
+++ b/testsuites/mptests/mp04/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ Multiprocessing_configuration.node ],
Multiprocessing_configuration.node,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp05/init.c b/testsuites/mptests/mp05/init.c
index b6338f9a5d..0732a85cfc 100644
--- a/testsuites/mptests/mp05/init.c
+++ b/testsuites/mptests/mp05/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[Multiprocessing_configuration.node],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp06/init.c b/testsuites/mptests/mp06/init.c
index 8639554703..f04f834956 100644
--- a/testsuites/mptests/mp06/init.c
+++ b/testsuites/mptests/mp06/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[Multiprocessing_configuration.node],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp07/init.c b/testsuites/mptests/mp07/init.c
index 1d18eccd79..a732434ead 100644
--- a/testsuites/mptests/mp07/init.c
+++ b/testsuites/mptests/mp07/init.c
@@ -43,7 +43,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[Multiprocessing_configuration.node],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp08/init.c b/testsuites/mptests/mp08/init.c
index 229a47afef..b16585c99c 100644
--- a/testsuites/mptests/mp08/init.c
+++ b/testsuites/mptests/mp08/init.c
@@ -57,7 +57,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ Multiprocessing_configuration.node ],
1,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp09/init.c b/testsuites/mptests/mp09/init.c
index 95c837689a..b6f5195139 100644
--- a/testsuites/mptests/mp09/init.c
+++ b/testsuites/mptests/mp09/init.c
@@ -57,7 +57,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[Multiprocessing_configuration.node],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
diff --git a/testsuites/mptests/mp10/init.c b/testsuites/mptests/mp10/init.c
index b37be53a4c..1413c7b897 100644
--- a/testsuites/mptests/mp10/init.c
+++ b/testsuites/mptests/mp10/init.c
@@ -80,7 +80,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
@@ -95,7 +95,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 2 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 2 ]
@@ -110,7 +110,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 3 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 3 ]
diff --git a/testsuites/mptests/mp11/init.c b/testsuites/mptests/mp11/init.c
index 5e3da0d8d0..7c89be66c2 100644
--- a/testsuites/mptests/mp11/init.c
+++ b/testsuites/mptests/mp11/init.c
@@ -54,7 +54,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_GLOBAL,
&junk_id
diff --git a/testsuites/mptests/mp13/init.c b/testsuites/mptests/mp13/init.c
index af618aed7c..1e96d5c69e 100644
--- a/testsuites/mptests/mp13/init.c
+++ b/testsuites/mptests/mp13/init.c
@@ -76,7 +76,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 1 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
@@ -91,7 +91,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ 2 ],
1,
- 1024,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 2 ]
diff --git a/testsuites/mptests/mp14/init.c b/testsuites/mptests/mp14/init.c
index 2b2070083b..4ec9c6a273 100644
--- a/testsuites/mptests/mp14/init.c
+++ b/testsuites/mptests/mp14/init.c
@@ -120,7 +120,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ Multiprocessing_configuration.node ],
2,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Event_task_id[ 1 ]
@@ -135,7 +135,7 @@ rtems_task Init(
status = rtems_task_create(
Semaphore_task_name[ Multiprocessing_configuration.node ],
2,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Semaphore_task_id[ 1 ]
@@ -150,7 +150,7 @@ rtems_task Init(
status = rtems_task_create(
Queue_task_name[ Multiprocessing_configuration.node ],
2,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Queue_task_id[ 1 ]
@@ -166,7 +166,7 @@ rtems_task Init(
status = rtems_task_create(
Partition_task_name[ Multiprocessing_configuration.node ],
2,
- 2048,
+ RTEMS_MINIMUM_STACK_SIZE,
RTEMS_TIMESLICE,
RTEMS_GLOBAL,
&Partition_task_id[ 1 ]