726b11801f8e53185edc813ce1cd37d7bbf95d10
[pintos-anon] / TODO
1 -*- text -*-
2
3 * Get rid of rox--causes more trouble than it's worth
4
5 * Reconsider command line arg style--confuses everyone.
6
7 * pintos script doesn't (always?) delete temp disks
8
9 * Finish writing tour.
10
11
12
13
14
15 * process_death test needs improvement
16
17 * Internal tests.
18
19 * Improve automatic interpretation of exception messages.
20
21 * Userprog project:
22
23   - Mark read-only pages as actually read-only in the page table.  Or,
24     since this was consistently rated as the easiest project by the
25     students, require them to do it.
26
27   - Don't provide per-process pagedir implementation but only
28     single-process implementation and require students to implement
29     the separation?  This project was rated as the easiest after all.
30     Alternately we could just remove the synchronization on pid
31     selection and check that students fix it.
32
33 * Filesys project:
34
35   - Need a better way to measure performance improvement of buffer
36     cache.  Some students reported that their system was slower with
37     cache--likely, Bochs doesn't simulate a disk with a realistic
38     speed.
39
40 * Documentation:
41
42   - Add "Digging Deeper" sections that describe the nitty-gritty x86
43     details for the benefit of those interested.
44
45   - Add explanations of what "real" OSes do to give students some
46     perspective.
47
48 * Assignments:
49
50   - Add extra credit:
51
52     . Low-level x86 stuff, like paged page tables.
53
54     . Specifics on how to implement sbrk, malloc.
55
56     . Other good ideas.
57
58     . opendir/readdir/closedir
59
60     . everything needed for getcwd()