wasm-micro-runtime/core/shared/platform
Wenyong Huang 607ae47d7b
core/shared/platform: Zero memory returned by os_mmap in some platforms ()
The os_mmap should zero the mapped memory like what posix mmap does.
2024-06-21 13:33:12 +08:00
..
alios core/shared/platform: Zero memory returned by os_mmap in some platforms () 2024-06-21 13:33:12 +08:00
android Add vprintf override for android and esp-idf () 2024-02-22 17:02:46 +08:00
common Fix posix build when libc wasi is disabled and debug interp is enabled () 2024-06-06 09:37:28 +08:00
cosmopolitan cosmopolitan: Update compiler and update platform_internal.h () 2024-01-24 16:04:48 +08:00
darwin Always allocate linear memory using mmap () 2024-02-02 22:17:44 +08:00
ego Make a workaround for EGO when fstat returns NOT_SUPPORT () 2023-02-21 11:11:27 +08:00
esp-idf core/shared/platform: Zero memory returned by os_mmap in some platforms () 2024-06-21 13:33:12 +08:00
freebsd Allow using mmap for shared memory if hw bound check is disabled () 2024-01-16 22:15:55 +08:00
include shared-platform: Remove dependency on shared-utils' bh_memory_remap_slow () 2024-02-17 13:44:33 +08:00
linux Allow using mmap for shared memory if hw bound check is disabled () 2024-01-16 22:15:55 +08:00
linux-sgx Update version number to 2.0.0 and update release notes () 2024-04-20 10:16:34 +08:00
nuttx NuttX: Fix a dbus-related crash on esp32s3 () 2024-05-27 11:07:30 +08:00
riot core/shared/platform: Zero memory returned by os_mmap in some platforms () 2024-06-21 13:33:12 +08:00
rt-thread core/shared/platform: Zero memory returned by os_mmap in some platforms () 2024-06-21 13:33:12 +08:00
vxworks Allow using mmap for shared memory if hw bound check is disabled () 2024-01-16 22:15:55 +08:00
windows Implement the remaining Windows filesystem functions () 2024-02-28 11:02:42 +08:00
zephyr core/shared/platform: Zero memory returned by os_mmap in some platforms () 2024-06-21 13:33:12 +08:00
README.md re-org platform APIs, simplify porting process () 2020-03-16 16:43:57 +08:00

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.