SetConcurrencySupport configures whether support for concurrent execution of WebAssembly is enabled for stores using this configuration.
(enabled bool)
| 14 | // SetConcurrencySupport configures whether support for concurrent execution of |
| 15 | // WebAssembly is enabled for stores using this configuration. |
| 16 | func (cfg *Config) SetConcurrencySupport(enabled bool) { |
| 17 | C.wasmtime_config_concurrency_support_set(cfg.ptr(), C.bool(enabled)) |
| 18 | runtime.KeepAlive(cfg) |
| 19 | } |