Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Recursive DSF view model nodes in the debug view

Hello,

 

Has anyone tried recursive view model hierarchy in the debug view using DSF?

 

I’d trying something like

 

launch

            container

                        thread

                                    stack frame(s)

            container

            container

                        container

                                    container

                                                thread

                                                            stack frame(s)

                        container

                                    thread

                                                stack frame(s)

                       

 

It does show up properly in the debug view.

 

But when I fire suspended event on the thread for some reason my StackFrameVMNode.buildDelta doesn’t get called even though its getDeltaFlags returns properly CONTENT + EXAPND + SELECT for ISuspendedDMEvent.

 

I’ll keep digging into DefaultVMModelProxyStrategy code tomorrow.

I just saw a comment “Avoid descending into recursive node hierarchy's when calculating the delta.” and decided to make sure I am not trying a use case that is not supported by design.

 

Thanks in advance!

Dobrin

 


Back to the top