Started separating important structs from kernel.c
This commit is contained in:
16
include/addressspace.h
Normal file
16
include/addressspace.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef QUARK_ADDRESSSPACE_H
|
||||
#define QUARK_ADDRESSSPACE_H
|
||||
|
||||
#include "types/physaddr.h"
|
||||
|
||||
typedef struct addressspace_t
|
||||
{
|
||||
physaddr_t page_table;
|
||||
int refcount;
|
||||
} addressspace_t;
|
||||
|
||||
addressspace_t *addressspace_construct();
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user