System Calls

Back to Kernel vs User Space

The programmatic interface between user space and the kernel. Applications request OS services (file I/O, memory allocation, process creation) via system calls, which trigger a controlled transition to kernel mode. Examples: read(), write(), fork(), mmap(), socket().

operating-systems memory security