diff --git a/src/sys/isa/atkbd.c b/src/sys/isa/atkbd.c index 0ee8f70..048e223 100644 --- a/src/sys/isa/atkbd.c +++ b/src/sys/isa/atkbd.c @@ -178,7 +178,7 @@ " mov $0x20,%dx \n" /* The Following Sends Our EOI To The MPIC */ " mov $0x20,%ax \n" " outb %al,%dx \n" - " sti \n" + /* " sti \n" */ " call keyboardHandler \n" " pop %eax \n" " popa \n" @@ -289,6 +289,9 @@ /*** $Log$ + Revision 1.12 2004/07/24 20:00:51 reddawg + Lots of changes to the vmm subsystem.... Page faults have been adjust to now be blocking on a per thread basis not system wide. This has resulted in no more deadlocks.. also the addition of per thread locking has removed segfaults as a result of COW in which two tasks fault the same COW page and try to modify it. + Revision 1.11 2004/07/24 15:12:56 reddawg Now I'm current