aboutsummaryrefslogtreecommitdiff
path: root/src/inc/proc.h
blob: dc8b9e9ca0c6fb29b327844e2589a6c58be8dd63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// MIT License, Copyright (c) 2020 Marvin Borner

#ifndef PROC_H
#define PROC_H

#include <def.h>
#include <interrupts.h>

enum state { PROC_RUNNING, PROC_ASLEEP };

struct proc {
	u32 pid;
	enum state state;
	struct regs regs;
	/* struct proc *parent; */
	struct proc *next;
};

void proc_init();
struct proc *proc_make();

#endif