'can i access memory mapped file through WebAssembly

I have multiple separate application (C++, C#) that shares data through MemoryMappedFile. now I want to show some data from that; can I access that directly from WebAssembly???



Solution 1:[1]

I assume that you want to use the WebAssembly System Interface (WASI) for this. All currently available functions are documented in the WASI docs. It seems that nothing comparable to mmap can be found there.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 linuskmr