Move problem 1-2 (join) into project 2 as the "wait" system call.
[pintos-anon] / grading / vm / posix-compat.h
index df77e438758d1de5ba776817d108004e159b6128..70dee12885df227682b4ca5f40620689765b2383 100644 (file)
@@ -20,9 +20,9 @@ void pintos_exit (int status) NO_RETURN;
 #define exec pintos_exec
 pid_t pintos_exec (const char *file);
 
-#undef join
-#define join pintos_join
-int pintos_join (pid_t);
+#undef wait
+#define wait pintos_wait
+int pintos_wait (pid_t);
 
 #undef create
 #define create pintos_create