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
rustix is a system call wrapper that wraps raw system calls on Linux and libc on other platforms. It would allow mio to refactor out error handling and unsafe syscall handling code from its codebase. More materialistically, rustix bypasses libc for Linux system calls. In some cases, this can allow system calls to be directly inlined into their calling functions, saving instructions and increasing execution speed.
This doesn't seem necessary to me. We generally try pretty hard to not add new dependencies to Tokio, especially ones that are not under the Tokio org.
rustix
is a system call wrapper that wraps raw system calls on Linux andlibc
on other platforms. It would allowmio
to refactor out error handling and unsafe syscall handling code from its codebase. More materialistically,rustix
bypasseslibc
for Linux system calls. In some cases, this can allow system calls to be directly inlined into their calling functions, saving instructions and increasing execution speed.Its MSRV is 1.63, but as the MSRV was just bumped to 1.74 this shouldn't be an issue.
Rel: #1588
The text was updated successfully, but these errors were encountered: