I want to switch Fibers in other thread,
in Main thread from Second thread.

(Main thread creates two Fibers.)

but after calling SwithToFiber(pFiber),
in second thead leads to Fiber execution
in this thread, second (that called to swith)
but not native to Fiber,
so that Fiber in initial thread remain not changed.

For make switch possible it is need to convert second thread to fiber - does it correct?

It there way to switch Fibers, so they remain in main thread?

Is there methods to to split execution in thread,
remaining thread context same?
(for controlling it threads ?)

Thanks.