| 221 | |
| 222 | #if defined(USE_FIBER_CONT) |
| 223 | TContMachineContext::TContMachineContext() |
| 224 | : Fiber_(ConvertThreadToFiber(this)) |
| 225 | , MainFiber_(true) |
| 226 | { |
| 227 | Y_ENSURE(Fiber_, TStringBuf("fiber error")); |
| 228 | } |
| 229 | |
| 230 | TContMachineContext::TContMachineContext(const TContClosure& c) |
| 231 | : Fiber_(CreateFiber(c.Stack.size(), (LPFIBER_START_ROUTINE)ContextTrampoLine, (LPVOID)c.TrampoLine)) |