Järjestelmäkutsuilla
Järjestelmäkutsuilla, often translated as "system calls," are the fundamental interface between a user program and the operating system kernel. When a program needs to perform an operation that requires privileged access to hardware or system resources, such as reading from a file, creating a new process, or allocating memory, it cannot do so directly. Instead, it makes a system call.
The system call mechanism acts as a controlled gateway. The user program transitions from user mode to
Common categories of system calls include process control (e.g., fork, exec, exit), file management (e.g., open,