System Call
- A special kind of call made against the Kernel to perform one of a series of core functions
- On
Linux and other
POSIX systems, these are
open
,read
,write
,close
,exec
,fork
,exit
, andkill
at minimum, though Linux has a wider range - Often involves putting data into a specific location (depending on the Calling Convention) and then triggering an Interrupt Request, which will be handled by the kernel