X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=TODO;h=31606d182661ee33ae3ceefb616355d5f7daac19;hb=bc0cc9ec385f55e8dee745f55e25d98908255636;hp=1b0d43f0e8faaf20ee7c1bd47d53438401f00da8;hpb=b54220fb8ef7c55748cba4cdc7035dd4d5afc161;p=pintos-anon diff --git a/TODO b/TODO index 1b0d43f..31606d1 100644 --- a/TODO +++ b/TODO @@ -1,14 +1,19 @@ -*- text -*- -* Grader: +* Miscellaneous: - - Fix bug where failures are being treated as warnings. + - Currently the `pintos' utility has a broken return code policy: it + returns 1 to indicate success. It inherited this mistake from + Bochs, which does something similar. This needs to be fixed. * Userprog project: - Move `join' implementation here, from `threads' project, to help normalize the project difficulties. + - The semantics of the join system call should change so that it + only returns the exit code once. + - Mark read-only pages as actually read-only in the page table. Or, since this was consistently rated as the easiest project by the students, require them to do it. @@ -37,9 +42,6 @@ . Other good ideas. - - The semantics of the join system call should change so that it - only returns the exit code once. - - mmap/munmap should use segment IDs like Nachos. Too hard otherwise.