wasm-micro-runtime/core
Benbuck Nason 8239dd4aa7
Add wasm_export.h APIs to expose memory type (#3496)
Support to get `wasm_memory_type_t memory_type` from API
`wasm_runtime_get_import_type` and `wasm_runtime_get_export_type`,
and then get shared flag, initial page cout, maximum page count
from the memory_type:
```C
bool
wasm_memory_type_get_shared(const wasm_memory_type_t memory_type);
uint32_t
wasm_memory_type_get_init_page_count(const wasm_memory_type_t memory_type);
uint32_t
wasm_memory_type_get_max_page_count(const wasm_memory_type_t memory_type);
```
2024-06-06 09:20:24 +08:00
..
deps Separate app-manager and app-framework from WAMR (#3129) 2024-02-20 18:12:36 +08:00
iwasm Add wasm_export.h APIs to expose memory type (#3496) 2024-06-06 09:20:24 +08:00
shared NuttX: Fix a dbus-related crash on esp32s3 (#3470) 2024-05-27 11:07:30 +08:00
config.h Fix two issues to make fuzzing test quit earlier (#3471) 2024-05-30 14:55:21 +08:00
version.h Update version to 2.1.0 and update release notes (#3481) 2024-06-04 16:27:06 +08:00