Move problem 1-2 (join) into project 2 as the "wait" system call.
[pintos-anon] / src / lib / syscall-nr.h
index 5a243bd28798ef9d92747d16f38839f6028cb1c3..01851098fd28b24aee43715daa67267242956ba3 100644 (file)
@@ -5,7 +5,7 @@
 #define SYS_halt 0              /* Halts the operating system. */
 #define SYS_exit 1              /* Terminates this process. */
 #define SYS_exec 2              /* Start another process. */
-#define SYS_join 3              /* Waits for a child process to die. */
+#define SYS_wait 3              /* Waits for a child process to die. */
 #define SYS_create 4            /* Creates a file. */
 #define SYS_remove 5            /* Deletes a file. */
 #define SYS_open 6              /* Opens a file. */