Update.
[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 * Introduce a "yield" system call to speed up the syn-* tests.
12
13 via Godmar Back:
14
15 * Project 3 solution needs FS lock.
16
17 * Get rid of mmap syscall, add sbrk.
18
19 * Make backtrace program accept multiple object file arguments,
20   e.g. add -u option to allow backtracing user program also.
21
22 * VM projects do not use enough memory to force eviction.
23   Should reduce user limit or increase memory consumption.
24
25
26
27
28
29 * process_death test needs improvement
30
31 * Internal tests.
32
33 * Improve automatic interpretation of exception messages.
34
35 * Userprog project:
36
37   - Mark read-only pages as actually read-only in the page table.  Or,
38     since this was consistently rated as the easiest project by the
39     students, require them to do it.
40
41   - Don't provide per-process pagedir implementation but only
42     single-process implementation and require students to implement
43     the separation?  This project was rated as the easiest after all.
44     Alternately we could just remove the synchronization on pid
45     selection and check that students fix it.
46
47 * Filesys project:
48
49   - Need a better way to measure performance improvement of buffer
50     cache.  Some students reported that their system was slower with
51     cache--likely, Bochs doesn't simulate a disk with a realistic
52     speed.
53
54 * Documentation:
55
56   - Add "Digging Deeper" sections that describe the nitty-gritty x86
57     details for the benefit of those interested.
58
59   - Add explanations of what "real" OSes do to give students some
60     perspective.
61
62 * Assignments:
63
64   - Add extra credit:
65
66     . Low-level x86 stuff, like paged page tables.
67
68     . Specifics on how to implement sbrk, malloc.
69
70     . Other good ideas.
71
72     . opendir/readdir/closedir
73
74     . everything needed for getcwd()