Get start function address in Store.
| 446 | |
| 447 | /// Get start function address in Store. |
| 448 | const FunctionInstance *getStartFunc() const noexcept { |
| 449 | std::shared_lock Lock(Mutex); |
| 450 | return StartFunc; |
| 451 | } |
| 452 | |
| 453 | /// Set the target imported WASI module during instantiation. |
| 454 | void setWASIModule(const ModuleInstance *Mod) noexcept { |
no outgoing calls
no test coverage detected