diff options
author | Marvin Borner | 2020-05-13 21:28:56 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-13 22:12:41 +0200 |
commit | a9c7529dcca845d98192ece62be70f752972216b (patch) | |
tree | 666d49ceb411a669abe6191151b2238fd7156c30 /src/userspace | |
parent | e1a6ed079303dc7d218f1d5326a13b6755781271 (diff) |
Replaced alloc.h with liballoc
And many more adaptions to the lib
Diffstat (limited to 'src/userspace')
-rw-r--r-- | src/userspace/programs/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/userspace/programs/init.c b/src/userspace/programs/init.c index 724d11e..51aea63 100644 --- a/src/userspace/programs/init.c +++ b/src/userspace/programs/init.c @@ -32,7 +32,7 @@ void main() printf("INTs disabled :(\n"); // TODO: Fix page fault when mallocing - printf("Initializing userspace...\n"); + printf("Initializing userspace... %d\n", 42); // TODO: Fix scheduler turning off after spawn spawn("/bin/sh"); |