RE: Process Mode .NET
The way Windows works is that all processes run in user mode, and only the kernel is in priviledged mode. A process making a system call basically calls kernel code, which is already priviledged.
In fact, on most OSes, processes all run in user mode. This way, they're protected from damaging each other.
|