X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fuserprog%2Fsyscall.c;h=db67593b4d910e223e8ec645b78942895c9232af;hb=2f3628001838a081d81429d658af350c7054078e;hp=e6dfe94fb354b6162e92eb4c3b79719103426d43;hpb=f6580e9ad405b519dbe85027691bf3c66074b0a4;p=pintos-anon diff --git a/src/userprog/syscall.c b/src/userprog/syscall.c index e6dfe94..db67593 100644 --- a/src/userprog/syscall.c +++ b/src/userprog/syscall.c @@ -1,5 +1,6 @@ -#include "syscall.h" -#include "lib/lib.h" +#include "userprog/syscall.h" +#include +#include #include "threads/interrupt.h" #include "threads/thread.h" @@ -12,8 +13,8 @@ syscall_init (void) } static void -syscall_handler (struct intr_frame *f) +syscall_handler (struct intr_frame *f UNUSED) { - printk ("system call!\n"); + printf ("system call!\n"); thread_exit (); }