mirror of
https://github.com/drasko/codezero.git
synced 2026-01-11 18:33:16 +01:00
22 lines
271 B
C
22 lines
271 B
C
/*
|
|
* Container entry point for pager
|
|
*
|
|
* Copyright (C) 2007-2009 B Labs Ltd.
|
|
*/
|
|
|
|
#include <l4lib/init.h>
|
|
#include <l4lib/utcb.h>
|
|
|
|
|
|
extern void main(void);
|
|
|
|
void __container_init(void)
|
|
{
|
|
/* Generic L4 initialisation */
|
|
__l4_init();
|
|
|
|
/* Entry to main */
|
|
main();
|
|
}
|
|
|