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

@@ -3,13 +3,13 @@
#include "types/physaddr.h"
typedef struct addressspace_t
typedef struct address_space_t
{
physaddr_t page_table;
int refcount;
} addressspace_t;
} address_space_t;
addressspace_t *addressspace_construct();
address_space_t *address_space_construct();