| 1112 | } |
| 1113 | |
| 1114 | WASMEDGE_CAPI_EXPORT void WasmEdge_ConfigureCompilerSetInterruptible( |
| 1115 | WasmEdge_ConfigureContext *Cxt, const bool IsInterruptible) noexcept { |
| 1116 | if (Cxt) { |
| 1117 | Cxt->Conf.getCompilerConfigure().setInterruptible(IsInterruptible); |
| 1118 | } |
| 1119 | } |
| 1120 | |
| 1121 | WASMEDGE_CAPI_EXPORT bool WasmEdge_ConfigureCompilerIsInterruptible( |
| 1122 | const WasmEdge_ConfigureContext *Cxt) noexcept { |