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