Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
639 views

How does Windows switch to supervisor mode during a system call?

How does Windows switch to supervisor mode during a system call? I heard something about a "trap 0", but that doesn't even seem like an x86 instruction. I stepped through some system calls, but I ...
2
votes
2answers
3k views

ARM. Access user R13 and R14 from Supervisor mode

How do I access the user R13 and R14 which are saved when supervisor mode is entered? I am using an ARM7TDMI. I.E. I do not want to access supervisor R14 which now contains the return address to ...
1
vote
2answers
394 views

What is the difference between Operating system processing modes and CPU processing modes?

A process has two modes: User mode and supervisor mode. Also CPU has different privilege levels to run. Are these two concepts the same? In Linux Kernel Projects By Gary Nutt, it is mentioned that to ...
1
vote
2answers
3k views

User mode vs supervisor mode

I have a few questions on the user-mode and supervisor-mode on Unix-like machines. What is the difference between user-mode and supervisor-mode? I know that the user processes cannot access all ...