goldshtn/msos

"Parallel stacks" display

goldshtn opened this issue · 1 comments

When there are many threads, going over each thread's stack can be very time-consuming. Display all stacks as a tree where threads that have a common stack portion are grouped together. For example:

+ Root
   + Main (thr 1)
      + DoSomething
   + HelperThread (thr 2, 3, 4)
      + Helper1 (thr 2)
      + Helper2 (thr 3, 4)
   + FinalizerThread (thr 5)

Closing in dea6912, with an implementation for both native and managed.