Quality control (1)/Operating System 4

OS week4 interrupt / system call

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..

OS week3 Interrupt / ISR / IDT / atkbd_interrupt /

Lecture 4: Interrupt An operating system is a collection of service routines. The service routine can be executed by a request from an application (system call interrupt). Or it runs automatically when there is a serious error while running an application (exception interrupt) or when there is an external hardware event that the operating system has to handle (hardware interrupt). The service ro..