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
Many OS's don't support changing most of the descriptor flags on an open descriptor. The two flags WASI has that do seem like they might be portable to allow setting are append and nonblock (though of course nonblock is not implemented for files in most situations anyway).
We should at least document this.
And perhaps we should even remove set-fd-flags and replace it with just set-append and set-nonblock which operate on individual flags.
The text was updated successfully, but these errors were encountered:
Many OS's don't support changing most of the descriptor flags on an open descriptor. The two flags WASI has that do seem like they might be portable to allow setting are
append
andnonblock
(though of coursenonblock
is not implemented for files in most situations anyway).We should at least document this.
And perhaps we should even remove
set-fd-flags
and replace it with justset-append
andset-nonblock
which operate on individual flags.The text was updated successfully, but these errors were encountered: