You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to run Xinu in User mode?
I checked the system and device calls, but this seems a bit problematic.
For example, code like this in UART write:
wait(uartptr->osema);
If it is a process running in kernel mode and then wait get called that's fine. But if a process is in user mode and this code is executed in supervisor/handler/kernel mode, how does that work?
The text was updated successfully, but these errors were encountered:
Is it possible to run Xinu in User mode?
I checked the system and device calls, but this seems a bit problematic.
For example, code like this in UART write:
wait(uartptr->osema);
If it is a process running in kernel mode and then wait get called that's fine. But if a process is in user mode and this code is executed in supervisor/handler/kernel mode, how does that work?
The text was updated successfully, but these errors were encountered: