Check if shutdown has been requested Background threads should poll this and exit early when true.
| 71 | /// Check if shutdown has been requested |
| 72 | /// Background threads should poll this and exit early when true. |
| 73 | bool isShutdownRequested() FL_NOEXCEPT { return mShutdownRequested.load(); } |
| 74 | |
| 75 | /// Request shutdown — background threads will see this via isShutdownRequested() |
| 76 | void requestShutdown() FL_NOEXCEPT { mShutdownRequested.store(true); } |
no test coverage detected