From 4286b14839c0c4ec016d816e426660f6685ae349 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 7 May 2020 18:10:22 +0200 Subject: Fixed many bugs with wait() and fork() This also adds many race conditions which really need to be fixed.. --- src/userspace/programs/sh.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'src/userspace/programs/sh.c') diff --git a/src/userspace/programs/sh.c b/src/userspace/programs/sh.c index bb1c9ea..12f8b2c 100644 --- a/src/userspace/programs/sh.c +++ b/src/userspace/programs/sh.c @@ -1,4 +1,7 @@ +#include #include +#include +#include #include #include #include @@ -7,9 +10,12 @@ void main() { printf("[~] "); - while (1) { - putch(getch()); - } + /* while (1) { */ + /* putch(getch()); */ + /* } */ - syscall_halt(); + /* syscall_halt(); */ + while (1) { + //printf("A"); + }; } \ No newline at end of file -- cgit v1.2.3