TODO list for USB development.
[pintos-anon] / src / TODO
index 67813b3d00486542c76530e024691c148fba18c0..70e206de2733ef46fded7306efc6e1be6be56b53 100644 (file)
--- a/src/TODO
+++ b/src/TODO
@@ -1,45 +1,3 @@
-* Should we use a task gate for hardware interrupts?  Then we could
-  dedicate a stack to interrupt handling and not worry about interrupt
-  usage of kernel stacks.
+* Stats should be per-file system, not per-disk.
 
-* Filesystem dumps should include filehdrs?
-
-* Cygwin support:
-  - PE linker scripts?  Doesn't seem to support ELF ones.
-  - .S files need _ prefixes on symbols.
-
-* Implement `jitter'.
-
-* Compile and install gdb, dbg versions.
-  - Test gdb version.
-
-* Cross-compile notes:
-
-cd /tmp
-bzcat ~/binutils-2.15.tar.bz2 | tar x
-tar xzf newlib-1.12.0.tar.gz
-tar xzf gcc-core-3.3.2.tar.gz
-tar xzf gdb-6.2.1.tar.gz
-
-PATH=$PATH:/usr/class/cs140/i386/bin
-
-cd /tmp/binutils-2.15
-mkdir i386
-cd i386
-../configure --target=i386-elf --prefix=/usr/class/cs140/i386
-make LDFLAGS=-lintl
-make install
-
-cd /tmp/gcc-core-3.3.2.tar.gz
-mkdir i386
-cd i386
-../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --with-gnu-as --with-as=/usr/class/cs140/i386/bin/i386-elf-as --with-gnu-ld --with-ld=/usr/class/cs140/i386/bin/i386-elf-ld --with-headers=/tmp/newlib-1.12.0/newlib/libc/include --with-newlib
-make
-make install
-
-cd /tmp/gdb-6.2.1
-mkdir i386
-cd i386
-../configure --target=i386-elf --prefix=/usr/class/cs140/i386 --disable-tui
-make
-make install
+* Use xmalloc(), xcalloc() everywhere appropriate.