X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftests%2Fuserprog%2Fsc-bad-arg.c;h=aee48b0e15ee0ae21c5eb16be0505b97e1f8d7e6;hb=58b5b585e7efb4ce7ffc3d7374fb9f5afc601a0f;hp=e0cad1581c6620983b15485ba59f316bdcc20f4c;hpb=42a67e9ac6854ec56c35c82e1ad9c4e2c8662139;p=pintos-anon diff --git a/src/tests/userprog/sc-bad-arg.c b/src/tests/userprog/sc-bad-arg.c index e0cad15..aee48b0 100644 --- a/src/tests/userprog/sc-bad-arg.c +++ b/src/tests/userprog/sc-bad-arg.c @@ -1,4 +1,4 @@ -/* Sticks a system call number (SYS_exit) at the very top of the +/* Sticks a system call number (SYS_EXIT) at the very top of the stack, then invokes a system call with the stack pointer (%esp) set to its address. The process must be terminated with -1 exit code because the argument to the system call @@ -12,6 +12,6 @@ void test_main (void) { asm volatile ("movl $0xbffffffc, %%esp; movl %0, (%%esp); int $0x30" - :: "i" (SYS_exit)); + :: "i" (SYS_EXIT)); fail ("should have called exit(-1)"); }