System Call Last Updated : 22 Sep, 2025 Suggest changes Share Like Article Like Report A system call is a programmatic way in which a computer program requests a service from the kernel of the operating system on which it is executed. System Calls are,A way for programs to interact with the operating system. Provide the services of the operating system to the user programs.Only entry points into the kernel and are executed in kernel mode.System CallHow do System Calls Work?A system call allows a program to request services from the operating system.It can be written in high-level languages (C, C++, Pascal) or in assembly.When a program makes a system call, it switches to kernel mode.The OS handles the request, performs the task (e.g., file access, process control), and returns the result.Without system calls, each program would need its own way to access hardware, making systems inconsistent and error-prone.Types of System CallsServices provided by an OS are typically related to any kind of operation that a user program can perform like creation, termination, forking, moving, communication, etc. Similar types of operations are grouped into one single system call category. System calls are classified into the following categories:Read more about - Different Types of System Calls in OSFile System: Used to create, open, read, write, and manage files and directories.Process Control: Used to create, execute, synchronize, and terminate processes.Memory Management: Used to allocate, deallocate, and manage memory for processes.Interprocess Communication (IPC): Used for data exchange and communication between different processes.Device Management: Used to request and release devices, and to perform read/write operations on them. S Samit Mandal Follow Explore OS BasicsIntroduction to Operating System4 min readTypes of Operating Systems9 min readKernel in Operating System3 min readSystem Call2 min readWhat happens when we turn on computer?3 min readProcess ManagementIntroduction of Process Management4 min readCPU Scheduling in Operating Systems7 min readIntroduction to Process Synchronization4 min readSolutions to Process Synchronization Problems4 min readClassical IPC Problems2 min readIntroduction of Deadlock in Operating System3 min readHandling Deadlocks2 min readMultithreading in OS - Different Models4 min readMemory ManagementIntroduction to memory and memory units4 min readMemory Management in Operating System5 min readBuddy System - Memory Allocation Technique4 min readOverlays in Memory Management4 min readVirtual Memory in Operating System7 min readPage Replacement Algorithms in Operating Systems5 min readOperating system based Virtualization5 min readI/O ManagementFile Systems in Operating System4 min readImplementing Directory Management using Shell Script3 min readSecondary Memory7 min readDisk Scheduling Algorithms9 min readDifference between Spooling and Buffering5 min readImportant LinksLast Minute Notes â Operating Systems15+ min readOperating System Interview Questions15+ min read Article Tags : Misc Operating Systems Like