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
in library: user program -> libc printf -> libc write -> message to the kernel for console writing (CS in Mach) -> all the back path to the user program. PRO: Faster. CONS: most of the code in libc.
in server: user program -> libc printf -> message to the file server ( CS to the Mach kernel) -> CS to the server -> write execution -> message to Mach for console writing -> all the back path to the user program. PRO: more modular, more microkernel approch. CONS: Slower
The text was updated successfully, but these errors were encountered:
Implement the write system call:
Path:
The text was updated successfully, but these errors were encountered: