Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


Merge branch 'devel' of ssh://palacios@newskysaw/home/palacios/palacios into devel
[palacios.git] / test / geekos_test_vm / src / geekos / malloc.c
index ea76959..269f0a2 100644 (file)
@@ -19,7 +19,7 @@
  */
 void Init_Heap(ulong_t start, ulong_t size)
 {
-    /*Print("Creating kernel heap: start=%lx, size=%ld\n", start, size);*/
+    Print("Creating kernel heap: start=%lx, size=%ld\n", start, size);
     bpool((void*) start, size);
 }