Difference between revisions of "Microkernel"

From Computer History Wiki
Jump to: navigation, search
m (+cat)
m (See also: +MERT)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
A '''microkernel''' is a way of [[architecture|structuring]] an [[operating system]]; the [[kernel]] contains as little as possible, and many functions performed in the kernel in a 'monolithic' kernel (e.g. the [[file system]]) are moved out to 'privileged' [[process]]es, which perform those functions for [[user]]s.
 
A '''microkernel''' is a way of [[architecture|structuring]] an [[operating system]]; the [[kernel]] contains as little as possible, and many functions performed in the kernel in a 'monolithic' kernel (e.g. the [[file system]]) are moved out to 'privileged' [[process]]es, which perform those functions for [[user]]s.
 +
 +
There is still no general agreement on the use of microkernels; although they are generally more robust, and have capabilities that the 'classic' '''monolithic kernels''' do not have (e.g. the ability to switch to a new version of the file system code while the system is running), the division usually imposes some overhead, which is un-acceptable to some.
  
 
Microkernels can, unless implemented cleverly, be slower than a normal operating system; the extra [[context switch]]es required to activate the processes providing 'system' functions can be a source of overhead. The advantages of a microkernel are that the amount of code in the kernel is minimized, reducing the chance of a bug that can crash the entire system; and that the functions moved out to processes can be upgraded while the system is running.
 
Microkernels can, unless implemented cleverly, be slower than a normal operating system; the extra [[context switch]]es required to activate the processes providing 'system' functions can be a source of overhead. The advantages of a microkernel are that the amount of code in the kernel is minimized, reducing the chance of a bug that can crash the entire system; and that the functions moved out to processes can be upgraded while the system is running.
  
 
Functions typically left in the kernel are the provision of processes (and their [[address space]]s), including scheduling, and some sort of [[inter-process communication]].
 
Functions typically left in the kernel are the provision of processes (and their [[address space]]s), including scheduling, and some sort of [[inter-process communication]].
 +
 +
{{semi-stub}}
  
 
==See also==
 
==See also==
Line 9: Line 13:
 
* [[Hypervisor]]
 
* [[Hypervisor]]
 
* [[Exokernel]]
 
* [[Exokernel]]
 
+
* [[MERT]] - perhaps the earliest microkernel
{{semi-stub}}
 
  
 
[[Category: OS Concepts]]
 
[[Category: OS Concepts]]

Latest revision as of 23:15, 14 December 2023

A microkernel is a way of structuring an operating system; the kernel contains as little as possible, and many functions performed in the kernel in a 'monolithic' kernel (e.g. the file system) are moved out to 'privileged' processes, which perform those functions for users.

There is still no general agreement on the use of microkernels; although they are generally more robust, and have capabilities that the 'classic' monolithic kernels do not have (e.g. the ability to switch to a new version of the file system code while the system is running), the division usually imposes some overhead, which is un-acceptable to some.

Microkernels can, unless implemented cleverly, be slower than a normal operating system; the extra context switches required to activate the processes providing 'system' functions can be a source of overhead. The advantages of a microkernel are that the amount of code in the kernel is minimized, reducing the chance of a bug that can crash the entire system; and that the functions moved out to processes can be upgraded while the system is running.

Functions typically left in the kernel are the provision of processes (and their address spaces), including scheduling, and some sort of inter-process communication.

See also