Move user exception support into userprog.
authorBen Pfaff <blp@cs.stanford.edu>
Thu, 2 Sep 2004 03:25:54 +0000 (03:25 +0000)
committerBen Pfaff <blp@cs.stanford.edu>
Thu, 2 Sep 2004 03:25:54 +0000 (03:25 +0000)
commit6c5c6fdfe80bad40c90c19b67f00226610d59a38
tree76ea77205714820e9454410ffabc0b1f06c9bfd1
parentc9d103e3fc1f398acb10bbaa66bf5a61318d26e9
Move user exception support into userprog.
18 files changed:
src/Makefile.inc
src/threads/gdt.c [deleted file]
src/threads/gdt.h [deleted file]
src/threads/init.c
src/threads/interrupt.c
src/threads/interrupt.h
src/threads/intr-stubs.pl
src/threads/loader.S
src/threads/loader.h
src/threads/thread.c
src/threads/tss.c [deleted file]
src/threads/tss.h [deleted file]
src/userprog/exception.c [new file with mode: 0644]
src/userprog/exception.h [new file with mode: 0644]
src/userprog/gdt.c [new file with mode: 0644]
src/userprog/gdt.h [new file with mode: 0644]
src/userprog/tss.c [new file with mode: 0644]
src/userprog/tss.h [new file with mode: 0644]