Design Goals of Operating Systems.

Spread the love

The design goals of operating systems are :

  1. POSIX Compliance : POSIX (Portable operating system interface bases on Unix) is an IEEE standard 1003.1-1988. This standard helps in bringing comptibility among the various OSes.
  2. Extensibility : It is the ability of an OS to grow and change over time, according to the changing requirements of the user and the market. In order to build an extensible OS, the principle of separation is used. The OS is divided into mainly two parts. The base OS (remains unchanged) provides the most essential capabilities such as message passing, interrupt processing, process scheduling etc. and other part which is enhanced, provides functionalities like file system, application programming support etc. In addition OS code should possess the following traits :
    1. Modular Structure
    2. Object Oriented Design
    3. Loadable drivers
  3. Portability : It is degree of ease with which the OS can move from one family of processors to another family of processors.
  4. Reliability : It depends on two issues — robustness and protection of user data. If an operating system can effectively handle any error or exception then the OS is termed as robust.
  5. Compatibility : An OS is called software compatible if it supports the execution  of software written for other OS or earlier version of current OS. Compatibility is of two types :
    1. Source code compatibility.
    2. Binary Compatibility.
  6. Performance : Performance is rated in terms of :
    1. How quickly page faults and system calls are processed.
    2. How fat inter-process communication takes place.
    3. Ease of loading and unloading of system components at run time.