Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / lib / user / syscall.h
index 147252531bb0db74ae12bd74d378a25ea02bbebf..d03eae163ef371956b911277f75575637da18053 100644 (file)
@@ -13,7 +13,7 @@ typedef int mapid_t;
 void halt (void) NO_RETURN;
 void exit (int status) NO_RETURN;
 pid_t exec (const char *file);
-int join (pid_t);
+int wait (pid_t);
 bool create (const char *file, unsigned initial_size);
 bool remove (const char *file);
 int open (const char *file);
@@ -24,7 +24,7 @@ void seek (int fd, unsigned position);
 unsigned tell (int fd);
 void close (int fd);
 mapid_t mmap (int fd, void *addr);
-bool munmap (mapid_t);
+void munmap (mapid_t);
 bool chdir (const char *dir);
 bool mkdir (const char *dir);
 void lsdir (void);