-
-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Labels
Description
Changes that need to be addressed in uvwasi
Work is going on in the snapshot2 branch. Progress is indicated in the list below.
- The
__wasi_proc_raise()function and the__wasi_signal_ttype and constants were removed in Removeproc_raiseand the signal types and constants. WebAssembly/WASI#136. This change impacts ephemeral only. - The functions
__wasi_path_permissions_set()and__wasi_fd_permissions_set()were added in Add functions for working with file permissions. WebAssembly/WASI#170. - The
__wasi_poll_oneoff()function should returnEINVALifnsubscriptionsis zero. Make poll return errno::inval if there are no subscriptions. WebAssembly/WASI#193. - The
uvwasi_filetype_taddedUVWASI_FILETYPE_FIFOin Add FIFO filetype to match POSIX WebAssembly/WASI#189. - The
UVWASI_O_CREATflag should be renamed toUVWASI_O_CREATE, in accordance with Renamecreattocreate. WebAssembly/WASI#199. - Union formats have changed in Change witx unions to be tagged WebAssembly/WASI#220. See Update to use witx tagged unions WebAssembly/wasi-libc#165.
- The clocks
process_cputime_idandthread_cputime_idwere removed in Remove the cputime clocks. WebAssembly/WASI#197. - The error
acceswas renamed toaccessin Rename acces to access #209 WebAssembly/WASI#211. - The
uvwasi_dirent_tfields have been rearranged to move thed_namlenfield to the end of the struct. See Move $d_namlen to the end of $dirent WebAssembly/WASI#264.
tniessen, gengjiawen, lin7sh, vshymanskyy and tonidy