summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-08 16:21:48 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-08 16:21:48 +0000
commite7a36a98b1e9e047f8d9f56ff5ea93605e36cd46 (patch)
tree17355b1b7099f78ba64897b1ba6c27fc565e98c5 /cpukit
parentmoved PTHREAD_MINIMUM_STACK_SIZE from pthread.c to here so it would be (diff)
downloadrtems-e7a36a98b1e9e047f8d9f56ff5ea93605e36cd46.tar.bz2
Ada task stack size minimize is twice that for regular pthreads.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/posix/src/adasupp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/adasupp.c b/cpukit/posix/src/adasupp.c
index 740bf30132..234b0c2a40 100644
--- a/cpukit/posix/src/adasupp.c
+++ b/cpukit/posix/src/adasupp.c
@@ -7,7 +7,7 @@
#include <pthread.h>
#include <rtems/system.h>
-#include <rtems/score/stack.h>
+#include <rtems/posix/pthread.h>
/*PAGE
*
@@ -24,5 +24,5 @@ size_t _ada_pthread_minimum_stack_size( void )
* but for now, this will do.
*/
- return STACK_MINIMUM_SIZE;
+ return PTHREAD_MINIMUM_STACK_SIZE * 2;
}