7

The Linux kernel is often listed as a code base which you are recommended to read and, even if it is poorly commented (or the files I have looked at have all been), it does have some really good code in it.

Now, putting the Linux kernel aside, which other operating system kernels do you recommend people interested in systems programming and/or operating systems to study? Why? What is so great about the code base? Would it show you very different approaches from what the Linux kernel has gone with? Do they use interesting technologies? Something else...?

That the kernels are under an open source license is more or less necessary.

Anto
  • 11,157
  • 13
  • 67
  • 103
  • As comment (closed already): Check out CP/M, for historic reasons. http://www.seasip.demon.co.uk/Cpm/index.html – ott-- May 28 '13 at 11:03

4 Answers4

10

A great kernel is MINIX 3 deeply explained in the Tanenbaum's book (exist in paperback): Operating Systems Design and Implementation.

...Written by the creator of Minux, professional programmers will now have the most up-to-date tutorial and reference available today.

Revised to address the latest version of MINIX (MINIX 3), this streamlined, simplified new edition remains the only operating systems text to first explain relevant principles, then demonstrate their applications using a Unix-like operating system as a detailed example. It has been especially designed for high reliability, for use in embedded systems, and for ease of teaching...

gnat
  • 21,442
  • 29
  • 112
  • 288
BenjaminB
  • 1,706
  • 1
  • 12
  • 15
6

Microsoft Research Singularity. A very different approach to designing an Operating System. Based on advances in modern programming languages, type systems, tools, static analysis, compilers and program verification. In fact, the majority of the team didn't even come from Microsoft Research's Operating System Division, they were language, tool, verification and compiler people.

The basic idea is that static typing and analysis can give much stronger guarantees about process isolation than the CPU's MMU can. And it can give these guarantees at compile time instead of runtime, which means that processes are much more lightweight. Lightweight enough, in fact, that every device driver, every file system, every subcomponent of an application, can run in its own, isolated, garbage collected, process with practically zero overhead. (A context switch is pretty much just flipping a bunch of pointers. There is no checking involved, since all of that has already been done at compile time.)

The ideas in Singularity are carried forward in some other operating systems out of MSR: Midori (which is rumored to be a commercial implementation of Singularity and a possible successor to Windows NT) and Helios (which takes the idea of having all device drivers, OS services and programs written in a hardware-independent language and applies it to a multi-kernel approach, where different parts of the OS run on different CPUs with possibly different ISAs).

Jörg W Mittag
  • 101,921
  • 24
  • 218
  • 318
6

Inferno -- worth checking out, because many of it's ideas sooner or later get 'backported' to Linux/Unix. It's an experimental operating system by Bell Labs, and continuation of their work on Plan9.

Most interesting feature of Inferno is how it makes network resources completely transparent to applications:

Transparent Resources

Inferno offers complete transparency of resources and data using a simple but powerful 'namespace' system. By representing resources as files and having one standard communication protocol — 9P (Styx®) — resources such as data stores, services and external devices can easily be shared between Inferno systems. A resource interface may be imported to the local system and used by the applications without them knowing, or needing to know, whether it is local or remote.

vartec
  • 20,760
  • 1
  • 52
  • 98
  • would you mind explaining more on what it does and why do you recommend it as answering the question asked? ["Link-only answers"](http://meta.stackoverflow.com/tags/link-only-answers/info "what's this") are not quite welcome at Stack Exchange – gnat May 27 '13 at 20:50
  • 1
    @gnat: ok, done – vartec May 28 '13 at 10:38
5

Oberon. The books are The Oberon System: User Guide and Programmer's Manual and Project Oberon: The Design of an Operating System and Compiler

Oberon is an existence proof of the assertion that big workstation operating systems don't have to be big. At a time when Unix required many megabytes just to load (and one of the early Linux distros wouldn't load in less than 8 megabytes), Oberon provided a complete workstation operating system with a memory footprint about 300 kbytes.

John R. Strohm
  • 18,043
  • 5
  • 46
  • 56
  • 1
    The same applies to Smalltalk BTW. Which isn't terribly surprising, considering that Niklaus Wirth spent two sabbaticals at Xerox PARC before designing Lilith and Oberon, respectively. Also notable is the fact that (despite Wirth's connection to Xerox), Oberon is one of the *very* few post-1970s operating systems that did *not* clone the Xerox GUI, but rather had its own approach. And, it had proper layout in the IDE, something IntelliJ, NetBeans, Eclipse and Visual Studio *still* don't have. (Monospaced fonts? Seriously? You *do* realize nobody writes C# on punch cards, right?) – Jörg W Mittag Mar 23 '11 at 21:53
  • Nah, there are many much more interesting OSes around (and this is coming from someone writing Oberon-2 (the language) software on Oberon (the OS) almost every day). Mouse chords, anyone? – Remy Blank Mar 23 '11 at 21:53
  • @Remy, the tradition is that you NAME the "more interesting XXXes" when you say "there are many much more interesting XXXes around". (This is akin to the tradition that Wirth himself established: When you say "There's got to be a better way to do this", you are expected to go looking for it.) – John R. Strohm Mar 28 '11 at 00:43
  • let's see: Linux, the BSDs, Symbian, L4, Mach, uC/OS, TinyOS... Anything else, really. Somehow, I can only find Oberon interesting as a _bad_ example. Of course, I'm biased by having to actually work with it far too much. – Remy Blank Mar 28 '11 at 22:53