Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 529 Bytes

syscalls.md

File metadata and controls

13 lines (11 loc) · 529 Bytes

Syscalls

  • Provides a layer between the user-space and the hardware
  • These are not function calls, but these are assembly instructions
  • These instructions perform the following :
    • setup information to identify the system call and it’s parameters
    • trigger a kernel mode switch
    • retrieve the result of the system call

For more detailed information checkout the following :