Change assembly from AT&T to Intel syntax.
[pintos-anon] / TODO
1 -*- text -*-
2
3 * Userprog project:
4
5   - Move `join' implementation here, from `threads' project, to help
6     normalize the project difficulties.
7
8   - The semantics of the join system call should change so that it
9     only returns the exit code once.
10
11   - Mark read-only pages as actually read-only in the page table.  Or,
12     since this was consistently rated as the easiest project by the
13     students, require them to do it.
14
15   - Don't provide per-process pagedir implementation but only
16     single-process implementation and require students to implement
17     the separation?  This project was rated as the easiest after all.
18     Alternately we could just remove the synchronization on pid
19     selection and check that students fix it.
20
21 * Documentation:
22
23   - Finish writing tour.
24
25   - Add "Digging Deeper" sections that describe the nitty-gritty x86
26     details for the benefit of those interested.
27
28   - Add explanations of what "real" OSes do to give students some
29     perspective.
30
31 * Assignments:
32
33   - Add extra credit:
34
35     . Low-level x86 stuff, like paged page tables.
36
37     . Other good ideas.
38
39   - mmap/munmap should use segment IDs like Nachos.  Too hard
40     otherwise.
41
42   - Add src/testcases/vm, src/testcases/filesys and make it clear to use
43     them?
44
45 * Tests:
46
47   - Release some of them.
48
49   - The threads, userprog, vm test source files could use
50     factorization and cleanup along the lines of fslib in the filesys
51     tests.
52
53   - The p1-4.c testcase needs significant tuning.  Currently it takes
54     too long (especially when SHOW_PROGRESS is turned on) and doesn't
55     show significant improvement.
56