feat: start adding physical memory allocator
This commit is contained in:
parent
8dc53f662e
commit
e2ea22ad53
15 changed files with 440 additions and 38 deletions
10
kernel/include/process/process.h
Normal file
10
kernel/include/process/process.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "util/number.h"
|
||||
|
||||
using pid_t = uint64_t;
|
||||
|
||||
constexpr const pid_t pid_free = 0;
|
||||
constexpr const pid_t pid_reserved = 1;
|
||||
constexpr const pid_t pid_mmio = 2;
|
||||
constexpr const pid_t pid_kernel = 3;
|
||||
Loading…
Add table
Add a link
Reference in a new issue