mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-05 15:15:44 +00:00
44 lines
685 B
C
44 lines
685 B
C
/*
|
|
* COPYRIGHT (c) 1989-2007
|
|
* On-Line Applications Research Corporation (OAR).
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#define __RTEMS_VIOLATE_KERNEL_VISIBILITY__
|
|
#include <bsp.h>
|
|
#include <stdlib.h>
|
|
|
|
void *POSIX_Init(
|
|
void *argument
|
|
)
|
|
{
|
|
extern int gnat_main ( int argc, char **argv, char **envp );
|
|
|
|
(void) gnat_main ( 0, 0, 0 );
|
|
|
|
exit( 0 );
|
|
}
|
|
|
|
/*
|
|
* Only for sp04
|
|
*/
|
|
|
|
rtems_id tcb_to_id(
|
|
Thread_Control *tcb
|
|
)
|
|
{
|
|
return tcb->Object.id;
|
|
}
|
|
|
|
/*
|
|
* By putting this in brackets rather than quotes, we get the search
|
|
* path and can get this file from ".." in the mptests.
|
|
*/
|
|
|
|
#define CONFIGURE_INIT
|
|
#define CONFIGURE_GNAT_RTEMS
|
|
#define CONFIGURE_MEMORY_OVERHEAD (256)
|
|
|
|
#include <config.h>
|