wasm-micro-runtime/core/shared/platform
Callum Macmillan 72367f47eb
Added socket send and recv timeout options (#1419)
Added socket send and recv timeout options with implementation for posix platform.

This is part of a extending support for sockets in WASI. #1336.

Also add sample that sets and reads back the send and receive timeouts using
the native function binding.
2022-09-03 08:35:23 +08:00
..
alios Apply clang-format for core/shared and product-mini files (#785) 2021-10-14 09:12:07 +08:00
android Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
common Added socket send and recv timeout options (#1419) 2022-09-03 08:35:23 +08:00
darwin Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
esp-idf esp-idf: Make esp-idf support Libc WASI (#1356) 2022-08-15 16:17:28 +08:00
include Added socket send and recv timeout options (#1419) 2022-09-03 08:35:23 +08:00
linux Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
linux-sgx Added socket send and recv timeout options (#1419) 2022-09-03 08:35:23 +08:00
nuttx Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
riot Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
rt-thread Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
vxworks Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +08:00
windows Added socket send and recv timeout options (#1419) 2022-09-03 08:35:23 +08:00
zephyr Implement POSIX semaphore support for linux platform (#1345) 2022-08-08 19:59:46 +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.