diff options
author | Marvin Borner | 2021-01-09 23:19:53 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-09 23:19:53 +0100 |
commit | 836294b9232c7d63d26db4f87c32cf1420cd856d (patch) | |
tree | 54f1b28951c53b38dcde5866a74c082c8ef83b0f /kernel/inc/proc.h | |
parent | f27a5f8af9fc5a16b80a7d6646e44d718b0efd7d (diff) |
To be continued
Diffstat (limited to 'kernel/inc/proc.h')
-rw-r--r-- | kernel/inc/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h index 5fc217c..93d8d48 100644 --- a/kernel/inc/proc.h +++ b/kernel/inc/proc.h @@ -41,7 +41,7 @@ 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); -struct proc_message *proc_receive(struct proc *proc); +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); |