Process Management
Contents
Process Management#
https://en.wikipedia.org/wiki/Process_management_(computing)
Context Switch#
Process of storing the system state for one task, so that task can be paused and another task resumed.
There are three potential triggers for a context switch:
Multitasking
Interrupt handling
User and Kernel mode switching
System Calls#
Programmatic way in which a computer program requests a service from the kernel. System calls provide an essential interface between a process and the operating system.
System calls are generally not invoked directly, but rather via wrapper functions in glibc.