wasm-micro-runtime/core/shared/platform
Wenyong Huang 388530c738
Modify os_cond_reltimedwait to support long time wait (#461)
Modify the argument of os_cond_reltimedwait to uint64 type to support long time wait, and handle possible integer overflow.
2020-12-07 17:37:53 +08:00
..
alios Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
android Implement libc-WASI for Linux SGX platform and update documents (#343) 2020-08-10 15:12:26 +08:00
common Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
darwin Refactor app heap and memory boundary check, and fix os_printf compilation error (#356) 2020-08-20 12:43:12 +08:00
esp-idf Fix some compilation warnings and add esp-idf platform for experiment (#454) 2020-11-30 16:03:51 +08:00
include Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
linux Refactor app heap and memory boundary check, and fix os_printf compilation error (#356) 2020-08-20 12:43:12 +08:00
linux-sgx Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
nuttx Fix some coding style issues, fix doc typo and refine some codes (#392) 2020-09-20 08:20:45 +08:00
riot Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
vxworks Refactor app heap and memory boundary check, and fix os_printf compilation error (#356) 2020-08-20 12:43:12 +08:00
windows Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
zephyr Modify os_cond_reltimedwait to support long time wait (#461) 2020-12-07 17:37:53 +08:00
README.md re-org platform APIs, simplify porting process (#201) 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.