URL
https://opencores.org/ocsvn/c0or1k/c0or1k/trunk
Subversion Repositories c0or1k
[/] [c0or1k/] [trunk/] [conts/] [baremetal/] [kmi_service/] [container.c] - Rev 3
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Container entry point for pager * * Copyright (C) 2007-2009 B Labs Ltd. */ #include <l4lib/init.h> #include <l4lib/utcb.h> #include <l4lib/lib/thread.h> void main(void); void __container_init(void) { /* Generic L4 initialisation */ __l4_init(); /* Thread library initialisation */ __l4_threadlib_init(); /* Entry to main */ main(); }
Go to most recent revision | Compare with Previous | Blame | View Log