Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Based on MSDN article
All code that runs in kernel mode shares a single virtual address space. This means that a kernel-mode driver is not isolated from other drivers and the operating system itself. If a kernel-mode driver accidentally writes to the wrong virtual address, data that belongs to the operating system or another driver could be compromised. If a kernel-mode driver crashes, the entire operating system crashes.
what is reason??
why OS don't Isolated Process in kernel-mode?
Posted

1 solution

Because Windows kernel (like, for instance, Linux one) is monolithic. There are alternatives, however, like Minix (see Microkernel at Wikipedia[^], "Does Windows have a Microkernel or Monolithic kernel?"[^]).
The latter page gives you also a reason: performance.
 
Share this answer
 
v2
Comments
Sergey Alexandrovich Kryukov 9-Dec-12 0:06am    
Good point, a 5. I would prefer to answer more correctly: "Because authors of the OS designed it this way".
Seriously, this is more correct. There is no one single reason. And this is not the law of natures, as illustrated by micro- nano-kernel approaches. People use a number of factors to take one or another route, including just personal preferences and capabilities.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900