X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=blobdiff_plain;f=palacios%2Fsrc%2Fgeekos%2Fvmm_stubs.c;h=fb52584ac6516525f927789e8d507fba28011faf;hp=51f5801eab727dcba8d6feffb372775eddf11a30;hb=701de97007c8b6776998eeab78469a4304f6b871;hpb=b4963a8a43ca9103946f926e062e609e4498c2e2 diff --git a/palacios/src/geekos/vmm_stubs.c b/palacios/src/geekos/vmm_stubs.c index 51f5801..fb52584 100644 --- a/palacios/src/geekos/vmm_stubs.c +++ b/palacios/src/geekos/vmm_stubs.c @@ -6,9 +6,16 @@ void * Allocate_VMM_Pages(int num_pages) { return Alloc_Page(); } +void Free_VMM_Page(void * page) { + Free_Page(page); +} +void * VMM_Malloc(uint_t size) { + return Malloc((ulong_t) size); +} -void Free_VMM_Page(void * page) { - Free_Page(page); + +void VMM_Free(void * addr) { + Free(addr); }