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
Usage of file descriptors caused some stability bugs on some new
platforms (mostly ucrt). As the multithreading was included in previous
versions and the "standard streams" separated for each thread (fInput,
fError, fOutput), there is really no need to perform any dup() or dup2()
on files descriptors (except for external programs). This new
implementation increases portability as uses mostly only c standard
functions, and speed also as it only use variables susbstition instead
of system level calls.
0 commit comments