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
Fix dup2_stdout et al to handle fd aliasing. (#1069)
* Fix `dup2_stdout` et al to handle fd aliasing.
Fix `dup2_stdout` et al to work in the case where the file descriptor
they are passed is the same as the file descriptor they implicitly
operate on, including on targets that don't have a `dup2` syscall and
implement it using `dup3`, such as aarch64.
Fixes#1067.
* rustfmt and fix test compilation.
0 commit comments