A shared space multi-threaded example application presenting the use of the

thread library. It also exemplifies how a new sample application can be added.
This commit is contained in:
Bora Sahin
2009-11-17 21:48:46 +02:00
parent 9a8e1fa437
commit 496fba81c8
4 changed files with 207 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
/*
* 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();
}