vote up 1 vote down star

I am interested to learn: what are the most common technical causes (from the perspective of operating system programming) of an operating system crash (not limited to Windows crashes)? I'm looking for an answer not like "too many apps open", but what specifically happens when too many apps are open that causes the crash.

flag
While the question may be OK, I would suggest to move your theories into an answer and let other vote it down. This way I am voting down the question, because it already contains the incorrect answer. – Suma Sep 22 '08 at 10:31
Makes sense, fixed. – devinmoore Sep 22 '08 at 10:57

6 Answers

vote up 5 vote down check

In my opinion

  1. Bad drivers
  2. Kernel bugs
  3. Hardware failure
  4. End of resources

A modern operating system will not let a mere application crash it.

link|flag
Nice list, however "end of resources" should not cause a crash unless there is a bad driver, or bad kernel. Good code should handle all resource allocation failures gracefull. It is however true that this is quite common type of driver bug. – Suma Sep 22 '08 at 10:30
I was thinking about "fork bombs" and root file system full – Sklivvz Sep 22 '08 at 12:30
vote up 3 vote down

It's Buggy Drivers that cause OS crashes. Only the OS itself and drivers are able to harm the system.

To your suggestions:

  1. No OS has problems if an application accesses the same memory as the OS. Either the memory is accessible or it is not. If an application tries to access memory that it should not the CPU generates a segmentation-fault. The OS hands this over to the application and the problem is solved. (in 99% the app will crash afterwards, but that's not the fault of the OS).

  2. You're suggesting that slower programs are more safe. That's not true. The OS does not need to know what exactly your program is doing.

link|flag
1. "Segmentation fault" (or GPF in Windows land) is the term you are looking for when an application tries to access memory that it's not allowed to. "Page fault" refers to when a section of memory is accessed but it's been swapped out to virtual memory. – Dan Harper - Leopard CRM Sep 22 '08 at 11:41
dan, thanks for pointing that out. I've edited the post. – Nils Pipenbrinck Sep 22 '08 at 13:19
vote up 2 vote down

In modern OS, application code and OS code run in separate address spaces. The application code cannot crash the operating system. See here:

http://en.wikipedia.org/wiki/Ring_(computer_security)

The most common readon for a crash is code that is acting as part of the OS interfearing with other code that is acting as part of the OS. A common cause is poorly written device drivers that live in the OS's address space.

Less often, crashes are caused by hardware faulures.

link|flag
vote up 0 vote down

No you are way off. Typically there is nothing an application can do that can cause the OS to crash. OS crashes are generally caused by buggy device drivers and hardware failures.

link|flag
vote up 0 vote down

Two different sources trying to access a locked area is one problem. Getting all mutexes, monitors and locks to work 100% is not trivial.

link|flag
I am voting this up because deadlocks and livelocks are a very common cause of operating system failure. – Zan Lynx May 7 at 0:17
vote up 0 vote down

If we use Vista as an example - drivers ... NVidia in particular http://arstechnica.com/news.ars/post/20080325-vista-capable-lawsuit-paints-picture-of-buggy-nvidia-drivers.html. It's the OS that dictates memory allocation, not applications. Well, that's the theory.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.