-
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. |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
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.