Files
codezero/containers/posix/mm0/container.c
Bahadir Balban a41caeebd2 Created libc under containers/posix which now all tasks use to build.
There is a problem in the new libc that test0 now misbehaves. Going to be fixed.
2009-08-27 12:00:04 +03:00

33 lines
482 B
C

/*
* Container entry point for pager
*
* Copyright (C) 2007-2009 Bahadir Bilgehan Balban
*/
#include <posix/posix_init.h>
#include <l4lib/init.h>
#include <l4lib/utcb.h>
/*
* Application specific utcb allocation
* for this container.
*
* Copyright (C) 2007-2009 Bahadir Balban
*/
void main(void);
void uart_init(void);
void __container_init(void)
{
/* Initialize uarts */
uart_init();
/* Generic L4 initialisation */
__l4_init();
/* Entry to main */
main();
}