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.


added irq initial setup
[palacios.git] / palacios / include / geekos / vmm_stubs.h
index d6a8441..5a4b4cb 100644 (file)
@@ -6,6 +6,8 @@
 #include <geekos/malloc.h>
 
 
+struct guest_info;
+
 void * Allocate_VMM_Pages(int num_pages);
 void Free_VMM_Page(void * page);
 
@@ -14,6 +16,9 @@ void VMM_Free(void * addr);
 
 void * Identity(void *addr);
 
-void Hook_IRQ(int irq, void (*handler)());
 
+int hook_irq_stub(struct guest_info * info, int irq);
+int ack_irq(int irq);
+
+void Init_Stubs();
 #endif