- added thread_foreach
[pintos-anon] / doc / filesys.tmpl
index 4aefa437f1302b2ee0c6c2b0cd88ae49306ebd75..db792bfed2af176e65a70afc88264a17444f3740 100644 (file)
@@ -74,9 +74,6 @@ FirstName LastName <email@domain.example>
 >> B2: Describe your code for traversing a user-specified path.  How
 >> do traversals of absolute and relative paths differ?
 
->> B3: Look over "pwd.c" in src/examples.  Briefly explain how it
->> determines the present working directory.
-
 ---- SYNCHRONIZATION ----
 
 >> B4: How do you prevent races on directory entries?  For example,
@@ -85,9 +82,9 @@ FirstName LastName <email@domain.example>
 >> create a file with the same name, and so on.
 
 >> B5: Does your implementation allow a directory to be removed if it
->> is in use as a process's current directory?  If so, what happens to
->> that process's future file system operations?  If not, how do you
->> prevent it?
+>> is open by a process or if it is in use as a process's current
+>> working directory?  If so, what happens to that process's future
+>> file system operations?  If not, how do you prevent it?
 
 ---- RATIONALE ----