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.


5a4b4cb9fdec29b7123b50f179dc40b6fb292d74
[palacios.git] / palacios / include / geekos / vmm_stubs.h
1 #ifndef __VMM_STUBS_H
2 #define __VMM_STUBS_H
3
4
5 #include <geekos/mem.h>
6 #include <geekos/malloc.h>
7
8
9 struct guest_info;
10
11 void * Allocate_VMM_Pages(int num_pages);
12 void Free_VMM_Page(void * page);
13
14 void * VMM_Malloc(unsigned int size);
15 void VMM_Free(void * addr);
16
17 void * Identity(void *addr);
18
19
20 int hook_irq_stub(struct guest_info * info, int irq);
21 int ack_irq(int irq);
22
23 void Init_Stubs();
24 #endif