system_call / interrupt(2) [os week3 interrupt 이어서..] 7-1) sys_call_table[] is in arch/x86/kernel/syscall_table_32.S. How many system calls does Linux 2.6 support? 0부터 시작했으므로 linux 2.6이 제공하는 system calls는 총 326개이다. 7-2)What are the system call numbers for exit, fork, execve, wait4, read, write, and mkdir? 파일 내에서 "/찾고있는text"+enter를 통해 각 system call의 number를 찾는다. Role of sys_ni_syscall 7-3) Find s..