Finish up filesys grading stuff.
[pintos-anon] / TODO
1 -*- text -*-
2
3 * The p1-4.c testcase needs significant tuning.  Currently it takes
4   too long (especially when SHOW_PROGRESS is turned on) and doesn't
5   show significant improvement.
6
7 * The semantics of the join system call should change so that it only
8   returns the exit code once.
9
10 * mmap/munmap should use segment IDs like Nachos.  Too hard otherwise.
11
12 * Some confusion--do we really get overlapping ro/rw segment in normal
13   link?  Student example seemed to show that we don't.
14
15 * Finish writing the tour.
16
17 * Come up with a way for us to release some of the tests.
18
19 * userprog project should mark read-only pages as actually read-only
20   in the page table
21
22 * Add src/testcases/vm, src/testcases/filesys and make it clear to use
23   them?
24
25 * Speed up disk routines: filling an 8 MB disk takes a long time.
26
27 * Not sure that raw arc4 should really be used so much in the tests.
28   Any reason not to use random_bytes()?
29
30 * Grading script patches needed anymore?
31
32 * Add a "real-time" option to `pintos' script so that 30 second
33   intervals can be accurately timed for HW#1 timer, HW#4 write-behind
34   cache.