3OS

Questions For an OS Designer


Here are questions that you should answer before you start to code an OS. It's not a secret that every program must be designed before it is written (implemented). Also it's not a secret that a very few of programs are written this way... Most are written under pressure and hardly have a complete requirements list when coding starts.

Such an approach is very harmful. Design is finished in breaks between coding work and is dictated by things that are already written and work. Programmers tend to think "I'll change it later" but mostly later never comes. Nobody really wants to change already working code to fit a changed design.

It may be very painful if you write an OS. Because of design flaws or incomplete design the whole project may be brought down or at best take months to redesign and rewrite big parts.

Answering questions suggested here will not form a full design specification. However it will not let coding go completely off road. All of them should be answered before writing a line of code. Certain questions may be ignored if they are irrelevant, e.g. you don't need to think about file systems if you don't plan to support mass storage devices. From the other hand, all the answered questions should not contradict. Where I feel necessary, hints are typed as italic.


  1. What is a primary goal of my OS?

    1. Is it a standard (low end) desktop system? User is dummy, highest priority for hardware and software compatibility.
    2. Is it a high-end desktop system? User is CAD/CAM engineer, highest priority for performance and certain hardware/software compatibility.
    3. Is it a real-time oriented system? User is a professional programmer, highest priority for performance, defined response time, easy extendable hardware support and programming control.
  2. What platforms my OS is going to support?

    1. Will it support multiprocessing?
    2. What kind of multiprocessor platforms? Symmetric? (all processors are exactly the same). Asymmetric? (CPUs may be different in architecture and computing power). Both?
    3. Will it support only local multiprocessing? (all CPUs are connected through a local bus). Distributed multiprocessing? (CPUs are connected through network-like connection). Both?
    4. What is the target hardware system? Desktop? (more or less standard hardware set). Customizable (embedded) hardware? (If the latter is an answer you'll likely have to individually support every even compatible processor).
  3. Will it be a multitasking OS?

    1. What kind of multitasking will it provide for applications? Cooperative? (tasks yield CPU when they don't need it, demonstrating good will). Preemptive? (tasks are given a defined amount of CPU time).
    2. Do I need to protect tasks from each other well?
    3. What is a relationship between tasks in terms of living space? Do they share the same address space? Completely separated? Both?
    4. How will different tasks communicate with each other?
    5. What will be a memory model of space that a task runs in? Should I favor simplicity and speed (memory is cheap) or size (memory is a scarce resource)?
    6. Do I need to protect system from application tasks?
  4. What file system will my OS use?

    1. Should I favor access time (performance) or reduced storage space (size)?
    2. Can I use one of already developed and well documented file systems?
    3. Can I use a cut down version of one of well-known file systems?
    4. What will be an executable format?
  5. What build tools do I need?

    1. Can I use one of existent compilers and linkers?
    2. Can I obtain (for free, buy or lease) source code for compilers and linkers?
    3. Do I have to write my own several tools?
    4. Do I have to write all tools on my own?This should be by any means avoided.
  6. How can I easily support third party soft?

    1. Can I support already existent and popular software?
    2. How can I support easy creating of third party applications for my OS? (Libraries)
    3. How can I support easy creating of third party device drivers?
  7. How can I use already written code and information?

    1. Can I use code that is written by others and works? (Even partially).
    2. Where can I get different kinds of information? (Set your own information library)