Added stubs for the kernel memory manager
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
#include <socks/status.h>
|
||||
|
||||
kern_status_t vm_bootstrap(void)
|
||||
{
|
||||
return KERN_ERR_UNIMPLEMENTED;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
#include <socks/vm.h>
|
||||
#include <stddef.h>
|
||||
|
||||
vm_map_t *vm_map_create(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
#include <socks/vm.h>
|
||||
#include <stddef.h>
|
||||
|
||||
vm_object_t *vm_object_create(void)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
#include <socks/vm.h>
|
||||
|
||||
void vm_page_init(vm_page_t *page)
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user