mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
Now, bare containers get their files from conts/bare_src instead of conts/test. test directory will be used for the next generation test programs. Also bare_src is tracked by git now with a minor mod to .gitignore.
22 lines
264 B
C
22 lines
264 B
C
/*
|
|
* Container entry point for pager
|
|
*
|
|
* Copyright (C) 2007-2009 B Labs Ltd.
|
|
*/
|
|
|
|
#include <l4lib/init.h>
|
|
#include <l4lib/utcb.h>
|
|
|
|
|
|
void main(void);
|
|
|
|
void __container_init(void)
|
|
{
|
|
/* Generic L4 initialisation */
|
|
__l4_init();
|
|
|
|
/* Entry to main */
|
|
main();
|
|
}
|
|
|