Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ wamr-sdk/out/
wamr-sdk/runtime/build_runtime_sdk/
test-tools/host-tool/bin/
product-mini/app-samples/hello-world/test.wasm
product-mini/platforms/linux-sgx/enclave-sample/App/
product-mini/platforms/linux-sgx/enclave-sample/Enclave/
product-mini/platforms/linux-sgx/enclave-sample/iwasm

build_out
Expand All @@ -39,4 +37,12 @@ tests/benchmarks/coremark/coremark*
samples/workload/include/**
!samples/workload/include/.gitkeep

# core/iwasm/libraries/wasi-threads
# core/iwasm/libraries/wasi-threads

*_u.c
*_u.h
*_t.c
*_t.h
*.o
product-mini/app-samples/hello-world/iwasm
product-mini/app-samples/hello-world/test_wasm.h
1 change: 1 addition & 0 deletions core/iwasm/common/wasm_shared_memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ void
wasm_shared_memory_destroy()
{
bh_hash_map_destroy(wait_map);
wait_map = NULL;
os_mutex_destroy(&shared_memory_list_lock);
}

Expand Down
Loading