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 memory ranges
[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 void * Allocate_VMM_Pages(int num_pages);
10 void Free_VMM_Page(void * page);
11
12 void * VMM_Malloc(uint_t size);
13 void VMM_Free(void * addr);
14
15
16
17 #endif