From 082fc2d5d290d5bf4701146a6159611c344b5ab0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 5 Oct 1998 12:45:53 +0000 Subject: [PATCH] Fixed use of incorrect macro for minimum stack size. --- c/src/tests/sptests/spsize/size.c | 2 +- testsuites/sptests/spsize/size.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/c/src/tests/sptests/spsize/size.c b/c/src/tests/sptests/spsize/size.c index 841cdd7969..9ebad1aad6 100644 --- a/c/src/tests/sptests/spsize/size.c +++ b/c/src/tests/sptests/spsize/size.c @@ -98,7 +98,7 @@ #endif #define SYSTEM_TASKS \ - (MINIMUM_STACK_SIZE + \ + (STACK_MINIMUM_SIZE + \ MPCI_RECEIVE_SERVER_STACK_SIZE + \ (2*sizeof(Thread_Control))) + \ MPCI_RECEIVE_SERVER_FP + \ diff --git a/testsuites/sptests/spsize/size.c b/testsuites/sptests/spsize/size.c index 841cdd7969..9ebad1aad6 100644 --- a/testsuites/sptests/spsize/size.c +++ b/testsuites/sptests/spsize/size.c @@ -98,7 +98,7 @@ #endif #define SYSTEM_TASKS \ - (MINIMUM_STACK_SIZE + \ + (STACK_MINIMUM_SIZE + \ MPCI_RECEIVE_SERVER_STACK_SIZE + \ (2*sizeof(Thread_Control))) + \ MPCI_RECEIVE_SERVER_FP + \