Request shutdown — background threads will see this via isShutdownRequested()
| 74 | |
| 75 | /// Request shutdown — background threads will see this via isShutdownRequested() |
| 76 | void requestShutdown() FL_NOEXCEPT { mShutdownRequested.store(true); } |
| 77 | |
| 78 | /// Reset shutdown flag — call after cleanup to allow new threads |
| 79 | void resetShutdown() FL_NOEXCEPT { mShutdownRequested.store(false); } |
no test coverage detected