]> git.buserror.net Git - polintos/scott/priv.git/blob - kernel/include/kern/process.h
Untangle header file interdependencies.
[polintos/scott/priv.git] / kernel / include / kern / process.h
1 #ifndef _KERN_PROCESS_H
2 #define _KERN_PROCESS_H
3
4 #include <kern/mem.h>
5 #include <kern/orb.h>
6
7 namespace Mem {
8         class ProcAddrSpace : public AddrSpace {
9         public:
10                 ProcAddrSpace();
11                 ProcAddrSpace(void *page_table);
12                 
13                 ORB::IDSpace idspace;
14         };
15 }
16
17 #endif