| 72 | } |
| 73 | |
| 74 | void Executor::atomicNotifyAll() noexcept { |
| 75 | if (auto *MemInst = WaitingMemory.load(std::memory_order_acquire)) { |
| 76 | MemInst->notifyAllWaiters(); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | } // namespace Executor |
| 81 | } // namespace WasmEdge |
nothing calls this directly
no test coverage detected