Kernel Architecture of Various Popular Operating Systems.

Spread the love

Overview :

  1. UNIX : Layered Architecture
  2. Linux : Monolithic Architecture
  3. Windows : Hybrid Architecture (Microkernel + Layered)
  4. Mach : Microkernel Architecture.

UNIX KERNEL ARCHITECTURE :

  • Unix OS considers files and processes as the most important entities.

Unix Kernel Architecture

 

Unix offers a shell that acts as a command interpreter between the user and the kernel. The relevant part of the kernel is permanently loaded into the memory whereas the shell is swapped in, as and when needs by the system. There are various shell : Borne shell, Berkley shell, Korn shell. MIT’s X-Windows is a graphic user interface based shell. A shell supports a scripting language. The user can specify the steps that he or she wishes the OS to follow in the precise sequence in which the steps are written.

The Unix Environment

Linux Kernel Architecture : 

Linux kernel architecture consists of five components :

  1. Process Scheduler
  2. Memory manager
  3. Inter Process communication module
  4. File System
  5. Network interface.

Linux provides shell named ‘bash shell’.

Linux Kernel Architecture

 

Windows Architecture :

  • Most of the system and user processes run in the user mode. This mode is also called the privileged mode.
  • There are three layers in kernel :
    1. Executive
    2. Kernel
    3. Hardware abstraction layer (HAL)
  • Executive itself is a complete OS. It performs following operations :
    • I/O management
    • Object management
    • Security
    • Process Management
    • Virtual Memory management
  • Kernel performs following actions :
    • Thread scheduling
    • Thread dispatching
    • Interrupt handling
    • Multiprocessor synchronization
  • HAL contains modules that are hardware specific.

Windows OS architecture

 

Mach System Architecture :

  • Kernel tasks :
    • Task and thread management
    • Inter process communication
    • Memory object management : Address space is repseneted as object.
    • System call redirection.
    • Device support.
    • Multiprocessing (Many CPUs with shared memory)
    • Multicomputer (Many CPUs with own memory)
  • Each process is represented as a task. A task contains two parts : an application program and an emulation library. The emulation library handles the system calls generated by the application programs.
  • There are three layers :
    1. The simulation layer consisting of processes
    2. The service layer consisting of servers, of which there are two types : application servers and system servers
    3. The kernel layer consisting of the micro kernel.

Mach System Architecture