no, this is not possible. debugger can not get stack for not active fibers simply because only application itself know where inactive fibers data and stack located.
try explain.
given a fiber handle?
not exist handle for fiber. exist handle only for thread. and stack for active fiber - tis is the same as thread stack. additional fibers (and it stack) allocated from process heap. os not store - where additional fiber data/stack located. application itself must store this info. external programs, include debuggers, can not know this. as result - impossible show stack trace, if we even dont know where it located. debugger even can not know - how many fibers exist. possible only view - are fibers (how minimum one) active on thread (after call ConvertThreadToFiber
and before ConvertFiberToThread
). are additional fibers created, where it data/stack stored - already unknown.