| 231 | } |
| 232 | |
| 233 | void TContExecutor::Abort() noexcept { |
| 234 | WaitQueue_.Abort(); |
| 235 | auto visitor = [](TCont* c) { |
| 236 | c->Cancel(); |
| 237 | }; |
| 238 | Ready_.ForEach(visitor); |
| 239 | ReadyNext_.ForEach(visitor); |
| 240 | } |
| 241 | |
| 242 | TCont* TContExecutor::Create( |
| 243 | TContFunc func, |