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
Always virtualize file descriptors when using NODERAWFS (#19528)
At least for the `dup*()` syscalls, virtualizing the file
descriptors is necessary due to the absence of an API for these
functions in Node.js.
This commit ensures that a virtualized file descriptor is always
returned, even for the `open()` system call and similar functions.
While doing that, it revealed a few regressions in the NODERAWFS
implementation of `fchmod()`, `fchown()` and `ftruncate()` as they
were not remapping virtualized file descriptors to their native
counterparts.
0 commit comments