User Mode vs Kernel Mode

Status
Not open for further replies.

Prashant Kumbharkar

Newbie level 1
Joined
Aug 1, 2013
Messages
1
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Location
Ichalkaranji
Activity points
10
Kernel Mode

In Kernel mode, the executing code has complete and unrestricted access to the underlying hardware. It can execute any CPU instruction and reference any memory address. Kernel mode is generally reserved for the lowest-level, most trusted functions of the operating system. Crashes in kernel mode are catastrophic; they will halt the entire PC.

User Mode

In User mode, the executing code has no ability to directly access hardware or reference memory. Code running in user mode must delegate to system APIs to access hardware or memory. Due to the protection afforded by this sort of isolation, crashes in user mode are always recoverable. Most of the code running on your computer will execute in user mode.
 

I'm not sure I see the point of your post, are you trying to ask a question?
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…