Microsoft Interview Question

How linux system call was handled?

Interview Answer

Anonymous

Feb 28, 2010

System calls will cause a software interrupt which will load the system call arguments into registers and then context switch to kernel mode and copies the arguments from registers into memory. Then it starts executing the system call.

1