aboutsummaryrefslogtreecommitdiff
path: root/kernel/features
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features')
-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;