new file to support GNU Ada.

currently the only routine in this file simply returns the minimum stack
size for each thread.
This commit is contained in:
Joel Sherrill
1996-08-29 16:39:01 +00:00
parent b5c04b68e5
commit 62bf651fe5
2 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*
* $Id$
*/
#include <assert.h>
#include <errno.h>
#include <pthread.h>
#include <rtems/system.h>
#include <rtems/score/stack.h>
/*PAGE
*
* _ada_pthread_minimum_stack_size
*
* This routine returns the minimum stack size so the GNAT RTS can
* allocate enough stack for Ada tasks.
*/
size_t _ada_pthread_minimum_stack_size( void )
{
/*
* Eventually this may need to include a per cpu family calculation
* but for now, this will do.
*/
return STACK_MINIMUM_SIZE;
}

View File

@@ -0,0 +1,28 @@
/*
* $Id$
*/
#include <assert.h>
#include <errno.h>
#include <pthread.h>
#include <rtems/system.h>
#include <rtems/score/stack.h>
/*PAGE
*
* _ada_pthread_minimum_stack_size
*
* This routine returns the minimum stack size so the GNAT RTS can
* allocate enough stack for Ada tasks.
*/
size_t _ada_pthread_minimum_stack_size( void )
{
/*
* Eventually this may need to include a per cpu family calculation
* but for now, this will do.
*/
return STACK_MINIMUM_SIZE;
}