mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-07-15 16:58:34 +00:00
change function name
This commit is contained in:
parent
5f3397591f
commit
8266d15dea
|
@ -3296,7 +3296,7 @@ aot_unload(AOTModule *module)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||||
wasm_loader_destroy_custom_sections(module->custom_section_list);
|
wasm_runtime_destroy_custom_sections(module->custom_section_list);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
wasm_runtime_free(module);
|
wasm_runtime_free(module);
|
||||||
|
|
|
@ -4908,7 +4908,7 @@ wasm_runtime_show_app_heap_corrupted_prompt()
|
||||||
|
|
||||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||||
void
|
void
|
||||||
wasm_loader_destroy_custom_sections(WASMCustomSection *section_list)
|
wasm_runtime_destroy_custom_sections(WASMCustomSection *section_list)
|
||||||
{
|
{
|
||||||
WASMCustomSection *section = section_list, *next;
|
WASMCustomSection *section = section_list, *next;
|
||||||
while (section) {
|
while (section) {
|
||||||
|
|
|
@ -886,7 +886,7 @@ wasm_runtime_show_app_heap_corrupted_prompt();
|
||||||
|
|
||||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||||
void
|
void
|
||||||
wasm_loader_destroy_custom_sections(WASMCustomSection *section_list);
|
wasm_runtime_destroy_custom_sections(WASMCustomSection *section_list);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
|
@ -3788,7 +3788,7 @@ wasm_loader_unload(WASMModule *module)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
#if WASM_ENABLE_LOAD_CUSTOM_SECTION != 0
|
||||||
wasm_loader_destroy_custom_sections(module->custom_section_list);
|
wasm_runtime_destroy_custom_sections(module->custom_section_list);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
wasm_runtime_free(module);
|
wasm_runtime_free(module);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user