pintos: Avoid literal control character in Perl variable name.
[pintos-anon] / src / userprog / syscall.c
index 7f758c617d8089fd664cafba0d7973ae9ccc5e57..370c89b10f90501a4684c604ddbff9503481cf7a 100644 (file)
@@ -9,11 +9,11 @@ static void syscall_handler (struct intr_frame *);
 void
 syscall_init (void) 
 {
-  intr_register (0x30, 3, INTR_ON, syscall_handler, "syscall");
+  intr_register_int (0x30, 3, INTR_ON, syscall_handler, "syscall");
 }
 
 static void
-syscall_handler (struct intr_frame *f) 
+syscall_handler (struct intr_frame *f UNUSED
 {
   printf ("system call!\n");
   thread_exit ();