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
NODERAWFS's fstat() does not seem to work on any fd that is not backed by a physical file on the file system. I also noticed that fstat() fails after the backing file is unlink()ed. python-wasm ticket emmatyping/python-wasm#66 has a reproducer in Python. Both issues could be related.
Consider the following simple program:
If I compile it with
gcc
and run it, it will printstatus: 0
. If I compile it withemcc
and run it with node, it will printstatus: -1
.The text was updated successfully, but these errors were encountered: