blob: f5b943a5cb00e8df1c05b1f3080684c9337e06a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#pragma once
#include <kernel/arch/generic.h>
enum process_state {
PS_RUNNING,
PS_DEAD,
};
struct process {
void *stack_top;
struct pagedir *pages;
struct registers regs;
enum process_state state;
struct process *next;
};
extern struct process *process_first;
extern struct process *process_current;
// creates the root process
struct process *process_seed();
struct process *process_clone(struct process *orig);
_Noreturn void process_switch(struct process *proc);
struct process *process_find(enum process_state);
|