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
{{ message }}
This repository was archived by the owner on Sep 6, 2023. It is now read-only.
The kernel should provide a system call interface that will allow userspace programs to execute privileged operations, like printing to the screen.
The big questions to answer are:
What syscalls should we provide
how exactly should we show that to the user?
Rather than simply copy what other operating systems do, I think this is a good chance to think about what we want our system to look like. What do we like about the way that other operating systems do it? What don't we like? Right now is when we have the most freedom to decide what to do.
The kernel should provide a system call interface that will allow userspace programs to execute privileged operations, like printing to the screen.
The big questions to answer are:
Rather than simply copy what other operating systems do, I think this is a good chance to think about what we want our system to look like. What do we like about the way that other operating systems do it? What don't we like? Right now is when we have the most freedom to decide what to do.