Implemented more memory manager and btree tests in sandbox

This commit is contained in:
2023-01-19 20:52:56 +00:00
parent a53edf230f
commit 1bd9576a8d
7 changed files with 152 additions and 36 deletions

7
sandbox/vm/vm_page.c Normal file
View File

@@ -0,0 +1,7 @@
#include <socks/vm.h>
#include <string.h>
void vm_page_init(vm_page_t *pg)
{
memset(pg, 0x0, sizeof *pg);
}