mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-03-12 00:45:28 +00:00
![]() As an original design rule, the code in `core/shared/platform` should not rely on the code in `core/share/utils`. In the current implementation, platform layer calls function `bh_memory_remap_slow` in utils layer. This PR adds inline function `os_mremap_slow` in platform_api_vmcore.h, and lets os_remap call it if mremap fails. And remove bh_memutils.h/c as as they are unused. And resolve the compilation warning in wamrc: ```bash core/shared/platform/common/posix/posix_memmap.c:255:16: warning: implicit declaration of function ‘bh_memory_remap_slow’ 255 | return bh_memory_remap_slow(old_addr, old_size, new_size); ``` |
||
---|---|---|
.. | ||
alios | ||
android | ||
common | ||
cosmopolitan | ||
darwin | ||
ego | ||
esp-idf | ||
freebsd | ||
include | ||
linux | ||
linux-sgx | ||
nuttx | ||
riot | ||
rt-thread | ||
vxworks | ||
windows | ||
zephyr | ||
README.md |
This folder contains the platform abstract layer for multiple platforms. To support a new platform, you can simply create a new folder here and implement all the APIs defined in include
folder.
Refer to port_wamr.md for how to port WAMR to a target platform.