process struct now uses address_space struct

This commit is contained in:
2023-11-09 23:00:12 -06:00
parent 1375596310
commit df90bd7313
7 changed files with 32 additions and 25 deletions

View File

@@ -2,9 +2,9 @@
#include "heap.h"
#include "mmgr.h"
addressspace_t *addressspace_construct()
address_space_t *address_space_construct()
{
addressspace_t *as = kmalloc(sizeof(addressspace_t));
address_space_t *as = kmalloc(sizeof(address_space_t));
if(as == NULL)
{
return NULL;