aboutsummaryrefslogtreecommitdiff
path: root/kernel
diff options
context:
space:
mode:
authorMarvin Borner2021-02-17 22:13:59 +0100
committerMarvin Borner2021-02-18 18:03:43 +0100
commite28ea65105c4afd3a3dea7d050b392565d15120d (patch)
treef3c1eaf8c4da5d71893355db1779d73d98f68d2f /kernel
parentb32cb0a22db893c106cb86ca0f1178d5da05b551 (diff)
Started GUI rewrite
It's a mess right now..
Diffstat (limited to 'kernel')
-rw-r--r--kernel/features/proc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/features/proc.c b/kernel/features/proc.c
index 74fa5d4..2ca213b 100644
--- a/kernel/features/proc.c
+++ b/kernel/features/proc.c
@@ -290,6 +290,7 @@ s32 procfs_write(const char *path, void *buf, u32 offset, u32 count, struct devi
path++;
if (!memcmp(path, "msg", 4)) {
+ // TODO: Messages should be copied by value not by reference
stack_push_bot(p->messages, buf); // TODO: Use offset and count
proc_enable_waiting(pid, PROC_WAIT_MSG);
return count;