summaryrefslogtreecommitdiff
path: root/wasm2c
diff options
context:
space:
mode:
authorChangqing Jing <changqing.jing@bmw.com>2024-01-20 13:30:47 +0800
committerGitHub <noreply@github.com>2024-01-19 21:30:47 -0800
commitcb76e5cd81312e4dba52a06cfc6bc35f795e05bb (patch)
treeabc6a7e805c72b0f0f7f0123c53d45e2f4d82c3f /wasm2c
parent0c3b5ac16daf929ca018ad3cdac08123b4d2bedc (diff)
downloadwabt-cb76e5cd81312e4dba52a06cfc6bc35f795e05bb.tar.gz
wabt-cb76e5cd81312e4dba52a06cfc6bc35f795e05bb.tar.bz2
wabt-cb76e5cd81312e4dba52a06cfc6bc35f795e05bb.zip
Fix emscripten build warning and add missing export (#2367)
Diffstat (limited to 'wasm2c')
-rw-r--r--wasm2c/wasm-rt-impl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/wasm2c/wasm-rt-impl.c b/wasm2c/wasm-rt-impl.c
index 09a28726..57bd74cf 100644
--- a/wasm2c/wasm-rt-impl.c
+++ b/wasm2c/wasm-rt-impl.c
@@ -148,6 +148,7 @@ static void os_cleanup_signal_handler(void) {
#endif
#else
+#if WASM_RT_USE_MMAP
static void* os_mmap(size_t size) {
int map_prot = PROT_NONE;
int map_flags = MAP_ANONYMOUS | MAP_PRIVATE;
@@ -168,6 +169,7 @@ static int os_mprotect(void* addr, size_t size) {
static void os_print_last_error(const char* msg) {
perror(msg);
}
+#endif
#if WASM_RT_INSTALL_SIGNAL_HANDLER
static void os_signal_handler(int sig, siginfo_t* si, void* unused) {