Add "real-time" option to pintos utility and document its usage.
[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 * Finish writing the tour.
13
14 * Come up with a way for us to release some of the tests.
15
16 * userprog project should mark read-only pages as actually read-only
17   in the page table
18
19 * Add src/testcases/vm, src/testcases/filesys and make it clear to use
20   them?
21
22 * Speed up disk routines: filling an 8 MB disk takes a long time.
23   (They're only slow because timer_sleep always waits for at least one
24   timer tick.)