From 0e84a0ec6e7893dad13dff9a958c5bc987b79c82 Mon Sep 17 00:00:00 2001 From: rtm Date: Tue, 8 Aug 2006 19:58:06 +0000 Subject: fix race in holding() check in acquire() give cpu1 a TSS and gdt for when it enters scheduler() and a pseudo proc[] entry for each cpu cpu0 waits for each other cpu to start up read() for files --- userfs.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'userfs.c') diff --git a/userfs.c b/userfs.c index 0b2e9c3..b11f3eb 100644 --- a/userfs.c +++ b/userfs.c @@ -5,7 +5,8 @@ // file system tests char buf[1024]; -char *args[] = { "echo", "hello", "goodbye", 0 }; +char *echo_args[] = { "echo", "hello", "goodbye", 0 }; +char *cat_args[] = { "cat", "README", 0 }; int main(void) @@ -34,6 +35,7 @@ main(void) } else { puts("open doesnotexist failed\n"); } - exec("echo", args); + //exec("echo", echo_args); + exec("cat", cat_args); return 0; } -- cgit v1.2.3