]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/plr/doc/romain.lua
update
[l4.git] / l4 / pkg / plr / doc / romain.lua
1 -- Simple configuration to redundantly start 'hello'
2 --
3 -- As you can see, it's actually only launching the original application
4 -- and prefixing it with "rom/romain".
5
6 package.path = "rom/?.lua";
7
8 require("L4");
9
10 local ldr = L4.default_loader;
11
12 ldr:start(
13                   { caps = { },
14                     log = {"romain", "c"},
15                   },
16                     "rom/romain rom/hello"
17 --                  "rom/romain rom/pthread_hello"
18 --                  "rom/romain rom/pthread_mutex"
19                     );