본문 바로가기
2025/Operating System

Structure of the Operating System

by Indie J 2025. 7. 19.

 

  1. GUI (Graphical User Interface)
    •   A type of user interface that allows users to interact with electronic devices visually.
  2. System Call
    •   The interface for accessing the kernel of the operating system.
    •   Switches from user mode to kernel mode through a system call.
    •   Prevents direct access to computer resources and protects programs.
    •   Uses a mode bit flag variable (0 = kernel mode, 1 = user mode).
  3. Kernel
    •   The core part of the operating system that manages and controls the entire system.
    •   Communicates directly with hardware and resides in memory as the lifeline of the operating system.
    •   Provides the system call interface.
    •   Responsible for security, memory management, process scheduling, file systems, and I/O device management.
  4. Driver
    •   Software used to control and operate hardware devices.

'2025 > Operating System' 카테고리의 다른 글

Process  (0) 2025.07.30
How memory manages data  (0) 2025.07.27
Memory  (0) 2025.07.25
Components of a computer  (0) 2025.07.22
What is an operating system?  (0) 2025.07.16