Set the target imported WASI module during instantiation.
| 452 | |
| 453 | /// Set the target imported WASI module during instantiation. |
| 454 | void setWASIModule(const ModuleInstance *Mod) noexcept { |
| 455 | std::unique_lock Lock(Mutex); |
| 456 | WASIModInst = Mod; |
| 457 | } |
| 458 | |
| 459 | /// Get the target imported WASI module during instantiation. |
| 460 | const ModuleInstance *getWASIModule() const noexcept { |