Linked by Kroc Camen on Thu 25th Dec 2008 07:50 UTC, submitted by diegocg
Thread beginning with comment 341643
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
RE[6]: the list is impressive
by akrosdbay on Sun 28th Dec 2008 20:11
in reply to "RE[5]: the list is impressive"
While Linux is not a microkernel it isn't as monolithic as earlier versions of Unix. A lot has been moved outside the kernel and it is extremely modular, much more so than Windows.
It is either a microkernel or Monolithic. How much of the linux kernel is actually executed in userland?
The graphics part of the driver stack is shared with other OSes that use X.org like OpenSolaris.
RE[7]: the list is impressive
by abraxas on Sun 28th Dec 2008 20:35
in reply to "RE[6]: the list is impressive"
It is either a microkernel or Monolithic. How much of the linux kernel is actually executed in userland?
That's simply not true. Most kernels mix elements of a microkernel with elements of a monolithic kernel. Look at OSX which has a hybrid Mach/FreeBSD kernel. Linux has things like libusb, udev, and fuse which operate from userspace.
The graphics part of the driver stack is shared with other OSes that use X.org like OpenSolaris.
I'm not sure how that is relevant to the discussion.






Member since:
2005-07-07
The usual example of a non-monolithic kernel is Minix, http://en.wikipedia.org/wiki/MINIX.
While Linux is not a microkernel it isn't as monolithic as earlier versions of Unix. A lot has been moved outside the kernel and it is extremely modular, much more so than Windows.
Vista's graphics driver model is actually similar to Linux because there are two parts to the driver, one in kernel space for things like memory management and another part resides in userspace to handle things like GL acceleration. Linux also has split graphics drivers and DRI2 introduces a kernel memory manager for graphics much like Vista has.