nodejs / uvwasi

WASI syscall API built atop libuv
MIT License
228 stars 51 forks source link

move fd renumbering into the fd table #85

Closed cjihrig closed 4 years ago

cjihrig commented 4 years ago

This commit moves the file descriptor renumbering operation into the file descriptor table code since it depends on performing several fd table operations, and uses its internals. The previous implementation was broken anyway.

CI seems fine. Node CI with a new test for this functionality seems fine too.

cjihrig commented 4 years ago

Thanks for the review Tobias!