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.
|
|
|||||
|
|
|
In my opinion
A modern operating system will not let a mere application crash it. |
||||
|
|
|
It's Buggy Drivers that cause OS crashes. Only the OS itself and drivers are able to harm the system. To your suggestions:
|
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
Two different sources trying to access a locked area is one problem. Getting all mutexes, monitors and locks to work 100% is not trivial. |
||
|
|
|
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. |
||
|
|
