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
musl actually uses writev instead of write syscall to print to stdout.
Adding this new syscall implementation makes ckb-debugger nicer to musl.
Note that musl actually issues ioctl before issuing writev syscall as
well, however, ioctl is one messy component, it might be better that we
keep it simple so the debugger only handles writev for now. We can
hijack ioctl like we do now in musl.
0 commit comments