|
Hi there! In my scenario I want to have many modules instantiated from the same AOT file. They should be completely independent from each other, have their own memories and execution flow. |
Replies: 1 comment
|
Generally speaking, a WebAssembly runtime creates instances as the execution form for a module. Each instance has its own linear memory, which is essentially equivalent to a separate running state. So |
Generally speaking, a WebAssembly runtime creates instances as the execution form for a module. Each instance has its own linear memory, which is essentially equivalent to a separate running state. So
wasm_runtime_instantiate()only should be OK.