I'm been walking through the code in OS/161 with respect to how systems calls are executed. From what I can see, a system call (e.g. reboot()
) is actually translated by the OS/161 kernel into a call to sys_reboot()
. Similarly, a call to fork()
would be translated to a call to sys_fork()
.
Is my understanding correct?
Thanks.