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
We are currently in the progress of splitting up most of the service/syscall-api code into libos, and then keep libc clean in the sense that it should only interact with code from libos, instead of acting directly with system calls and system services.
This means we would like to end the most of the interactions that libc has with gracht+system calls.
Things that remain:
All file related functions currently invoke the system service protocol directly.
All socket related functions currently invoke the system service protocol directly.
events.h needs a corresponding implementation in libos with type header and normal header
signal.c uses both system call and process service directly
exit.c uses the thread system call directly
The text was updated successfully, but these errors were encountered:
We are currently in the progress of splitting up most of the service/syscall-api code into libos, and then keep libc clean in the sense that it should only interact with code from libos, instead of acting directly with system calls and system services.
This means we would like to end the most of the interactions that libc has with gracht+system calls.
Things that remain:
The text was updated successfully, but these errors were encountered: