| 240 | } |
| 241 | |
| 242 | TCont* TContExecutor::Create( |
| 243 | TContFunc func, |
| 244 | void* arg, |
| 245 | const char* name, |
| 246 | TMaybe<ui32> customStackSize |
| 247 | ) noexcept { |
| 248 | return CreateOwned([=](TCont* cont) { |
| 249 | func(cont, arg); |
| 250 | }, name, customStackSize); |
| 251 | } |
| 252 | |
| 253 | TCont* TContExecutor::CreateOwned( |
| 254 | NCoro::TTrampoline::TFunc func, |