aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/proc.h
diff options
context:
space:
mode:
authorMarvin Borner2021-01-09 23:31:28 +0100
committerMarvin Borner2021-01-09 23:33:34 +0100
commitff9c7766edded74f4d522484c828b1bdc7dfa96d (patch)
treefc076342222b6eb0c200a9bbb028c7765ed758b2 /kernel/inc/proc.h
parent836294b9232c7d63d26db4f87c32cf1420cd856d (diff)
Let's make a procfs for IPC instead
Diffstat (limited to 'kernel/inc/proc.h')
-rw-r--r--kernel/inc/proc.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h
index 93d8d48..c8fb3e2 100644
--- a/kernel/inc/proc.h
+++ b/kernel/inc/proc.h
@@ -4,7 +4,6 @@
#define PROC_H
#include <def.h>
-#include <event.h>
#include <interrupts.h>
#include <list.h>
#include <sys.h>
@@ -25,13 +24,6 @@ struct proc {
struct regs regs;
struct regs regs_backup;
enum proc_state state;
- struct list *messages;
-};
-
-struct proc_message {
- struct proc *src;
- struct proc *dest;
- struct message *msg;
};
struct proc *kernel_proc;
@@ -40,8 +32,6 @@ void scheduler(struct regs *regs);
void proc_init(void);
void proc_print(void);
struct proc *proc_current(void);
-void proc_send(struct proc *src, struct proc *dest, u32 type, void *data);
-u32 proc_receive(struct proc *proc, struct message *buf);
struct proc *proc_from_pid(u32 pid);
void proc_exit(struct proc *proc, int status);
void proc_yield(struct regs *r);