Refactor shared heap feature for interpreter mode (#3794)

To add test cases and samples.
This commit is contained in:
Wenyong Huang
2024-09-18 14:53:41 +08:00
committed by GitHub
parent 92852f3719
commit 5e20cf383e
6 changed files with 543 additions and 385 deletions

View File

@ -96,8 +96,8 @@ typedef union {
typedef struct WASMSharedHeap {
struct WASMSharedHeap *next;
void *heap_handle;
uint8_t *base_addr;
uint32_t size;
uint8 *base_addr;
uint32 size;
uint64 start_off_mem64;
uint64 start_off_mem32;
} WASMSharedHeap;