search for: init_x

Displaying 3 results from an estimated 3 matches for "init_x".

Did you mean: init_s
2006 Jul 17
3
mini-os under xen 3.0.2
...ing memory range 0xc0400000 - 0xc2000000 MM: Initialise page allocator for c002c000(2c000)-c2000000(2000000) MM: done Initialising timer interface Initialising console ... done. Initialising scheduler, idle_thread 00000000 Thread "Idle": pointer: 0xc002d00c, stack: 0xc002e000 Thread "init_xs": pointer: 0xc002d034, stack: 0xc0030000 Thread "xenstore": pointer: 0xc002d05c, stack: 0xc0032000 Xenbus initialised. Thread "init_xs" exited. -------------------------------- I have inserted some debug printk''s into do_hypervisor_callback() to see whether any...
2006 May 11
11
[PATCH] Integrating applications into Mini-OS
...en/features.h> #include <xen/version.h> +#if defined INIT_APP + void init_app(void); +#endif + /* * Shared page for communicating with the hypervisor. * Events flags go here, for example. @@ -171,6 +175,10 @@ /* Init XenBus from a separate thread */ create_thread("init_xs", init_xs, NULL); +#if defined INIT_APP + init_app(); +#endif + /* Everything initialised, start idle thread */ run_idle_thread(); } diff -ur oxen-unstable/extras/mini-os/lib/printf.c xen-unstable/extras/mini-os/lib/printf.c --- oxen-unstable/extras/mini-os/lib/printf.c 2006-0...
2006 May 01
6
[PATCH] Use stddef.h in Mini-OS to define size_t
Please patch Mini-OS so that it uses stddef.h to define size_t and NULL. This problem fixes errors that occur when linking Mini-OS with ANSI standard code that uses stddef.h. John diff -ur oxen-3.0-testing/extras/mini-os/include/lib.h nxen-3.0-testing/extras/mini-os/include/lib.h --- oxen-3.0-testing/extras/mini-os/include/lib.h 2006-04-14 22:21:55.000000000 -0400 +++