@brief Force-stop: sets both should_stop and completed flags. Used by runner and task wrappers to immediately mark a coroutine as done.
| 230 | /// @brief Force-stop: sets both should_stop and completed flags. |
| 231 | /// Used by runner and task wrappers to immediately mark a coroutine as done. |
| 232 | void stop_and_complete() FL_NOEXCEPT { |
| 233 | mShouldStop = true; |
| 234 | mCompleted = true; |
| 235 | } |
| 236 | |
| 237 | /// @brief Ready predicate function signature |
| 238 | using ReadyFn = bool (*)(void*); |
no outgoing calls
no test coverage detected