Fixed use of incorrect macro for minimum stack size.

This commit is contained in:
Joel Sherrill
1998-10-05 12:45:53 +00:00
parent 388be68fbc
commit 082fc2d5d2
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@
#endif #endif
#define SYSTEM_TASKS \ #define SYSTEM_TASKS \
(MINIMUM_STACK_SIZE + \ (STACK_MINIMUM_SIZE + \
MPCI_RECEIVE_SERVER_STACK_SIZE + \ MPCI_RECEIVE_SERVER_STACK_SIZE + \
(2*sizeof(Thread_Control))) + \ (2*sizeof(Thread_Control))) + \
MPCI_RECEIVE_SERVER_FP + \ MPCI_RECEIVE_SERVER_FP + \

View File

@@ -98,7 +98,7 @@
#endif #endif
#define SYSTEM_TASKS \ #define SYSTEM_TASKS \
(MINIMUM_STACK_SIZE + \ (STACK_MINIMUM_SIZE + \
MPCI_RECEIVE_SERVER_STACK_SIZE + \ MPCI_RECEIVE_SERVER_STACK_SIZE + \
(2*sizeof(Thread_Control))) + \ (2*sizeof(Thread_Control))) + \
MPCI_RECEIVE_SERVER_FP + \ MPCI_RECEIVE_SERVER_FP + \