commit a81e02133a2e8cb20ba62113a67bc9bee746c8bf
parent 82537b7156b98f5b1277641fef99d0b75a402a95
Author: kaashoek <kaashoek>
Date:   Mon,  4 Sep 2006 12:41:27 +0000
a few nits
Diffstat:
3 files changed, 1 insertion(+), 4 deletions(-)
diff --git a/lapic.c b/lapic.c
@@ -114,7 +114,6 @@ lapic_timerinit(void)
 void
 lapic_timerintr(void)
 {
-  // cprintf("cpu%d: timer interrupt!\n", cpu());
   lapic_write (LAPIC_EOI, 0);
 }
 
diff --git a/picirq.c b/picirq.c
@@ -1,5 +1,3 @@
-/* See COPYRIGHT for copyright information. */
-
 #include "types.h"
 #include "x86.h"
 #include "traps.h"
diff --git a/trap.c b/trap.c
@@ -21,7 +21,7 @@ tvinit(void)
   for(i = 0; i < 256; i++){
     SETGATE(idt[i], 1, SEG_KCODE << 3, vectors[i], 0);
   }
-  SETGATE(idt[T_SYSCALL], 1, SEG_KCODE << 3, vectors[48], 3);
+  SETGATE(idt[T_SYSCALL], 1, SEG_KCODE << 3, vectors[T_SYSCALL], 3);
 }
 
 void