File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ This contains a non-exhaustive list of changes that we had to make to be able to
44
55To remove or add code for wasm32-wasi builds we are using the 'WASM_WASI' macro.
66
7- # emulated functionality
7+ # Emulated functionality
88
99We are using emulation of getpid, signals and clocks.
1010
1111We are not using mman emulation due to the reasons outlined [ below] ( #mmap-support ) .
1212
13- # excluded code
13+ # Excluded code
1414
1515This describes the most common places where we needed to exclude code because
1616a method or constant is not available or is somehow different with WASI.
@@ -23,7 +23,7 @@ Thus there is no support for a FIFO filetype. So the two constants were
2323defined to the same value. Because of this a switch/case on file type will fail
2424due to duplicate case labels.
2525
26- We've commented out the S_IFFIFO cases.
26+ We've commented out the S_IFIFO cases.
2727
2828## setjmp and longjmp
2929
@@ -43,7 +43,7 @@ Additionally sqlite3 had to be modified in some ways for WASM_WASI builds:
4343 - use "dotlockIoFinder" for file locking
4444 - skip sqlite3_finalize
4545
46- ## unsupported posix methods
46+ ## Unsupported posix methods
4747
4848We have stubbed the posix methods in ` ext/posix/posix.c ` which are not supported for WASI.
4949
You can’t perform that action at this time.
0 commit comments