mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
Examples container type is designed to keep applications using codezero userspace libraries, which is aiming to help newcomers who would like to develop programs on top of the l4 microkernel. Now bare bone application is one of the examples. In the near future, lots of new programs will be introduced to show the various aspects of codezero eco-system.
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();
|
|
}
|
|
|