Use standard POSIX "ustar" format for the scratch disk.
[pintos-anon] / src / lib / syscall-nr.h
index ef57c7885c17db537d94a9503d38686b314d9696..21a7af952f8728f93b77d6867ebbf60a7699864c 100644 (file)
@@ -26,7 +26,9 @@ enum
     /* Project 4 only. */
     SYS_CHDIR,                  /* Change the current directory. */
     SYS_MKDIR,                  /* Create a directory. */
-    SYS_LSDIR                   /* List the current directory to stdout. */
+    SYS_READDIR,                /* Reads a directory entry. */
+    SYS_ISDIR,                  /* Tests if a fd represents a directory. */
+    SYS_INUMBER                 /* Returns the inode number for a fd. */
   };
 
 #endif /* lib/syscall-nr.h */