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
Remove unsafe and platform dependent errno retrieval
The recent addition of user ring buffers included calls to `*libc::__errno_location()`.
Apart from requiring an unsafe block, this function might not be available on some targets,
such as Android, causing build failures.
Use the portable implementation provided by `std::io::Error::last_os_error` instead.
0 commit comments