System Calls
0%

Kernel · Lesson 3

System Calls

Learn how user-space code invokes Linux kernel services and how to inspect calls safely with `strace`.

A system call is a defined entry into the kernel through which user-space code requests an operation such as opening a file, mapping memory, creating a process, or sending network data. The kernel validates arguments, credentials, object state, and security policy before performing the request.