kernel: remove placeholder vm subsystem

This commit is contained in:
2023-02-03 20:37:45 +00:00
parent bcdf101779
commit e714d619ba
5 changed files with 0 additions and 57 deletions

View File

@@ -1,6 +0,0 @@
#include <socks/status.h>
kern_status_t vm_bootstrap(void)
{
return KERN_ERR_UNIMPLEMENTED;
}

View File

@@ -1,7 +0,0 @@
#include <socks/vm.h>
#include <stddef.h>
vm_map_t *vm_map_create(void)
{
return NULL;
}

View File

@@ -1,7 +0,0 @@
#include <socks/vm.h>
#include <stddef.h>
vm_object_t *vm_object_create(void)
{
return NULL;
}

View File

@@ -1,6 +0,0 @@
#include <socks/vm.h>
void vm_page_init(vm_page_t *page)
{
}