aboutsummaryrefslogtreecommitdiffstats
path: root/extras/mini-os/kernel.c
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-25 16:25:26 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-25 16:25:26 +0000
commitb7b544e7491ff7ccea15d360a082842b897904a6 (patch)
tree4a4ca0f314b89b661dff971202d7d69b2bdf452a /extras/mini-os/kernel.c
parent0c01ed49354e4f00fc5cb9994800309b8b0ac99c (diff)
downloadxen-b7b544e7491ff7ccea15d360a082842b897904a6.tar.gz
xen-b7b544e7491ff7ccea15d360a082842b897904a6.tar.bz2
xen-b7b544e7491ff7ccea15d360a082842b897904a6.zip
Memory management fixes. Page tables are created, buddy allocator now
has ability to free memory (as well as allocate it). Signed-off-by: Grzegorz Milos <gm281@cam.ac.uk>
Diffstat (limited to 'extras/mini-os/kernel.c')
-rw-r--r--extras/mini-os/kernel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extras/mini-os/kernel.c b/extras/mini-os/kernel.c
index b275dd371f..7f1e241a1f 100644
--- a/extras/mini-os/kernel.c
+++ b/extras/mini-os/kernel.c
@@ -133,7 +133,7 @@ void start_kernel(start_info_t *si)
for ( ; ; )
{
// HYPERVISOR_yield();
- block(1);
+ block(100);
i++;
}
}