Debugging GDB Applications Using the clone () Function

Is there a GUI for GDB that will allow me to debug applications that create threads using clysc () syscall? I tried Insight and KDBG, but for some reason, when a new cloned thread is created, I do not see it in the thread list. The clone script is invoked through the built-in assembly. Is this not possible because the thread created a common PID with the source process? (it has a unique TID, though)

+5
source share
1 answer

You tried:

 set follow-fork-mode child

I do not use gdb GUI. Sometimes gdb -tui, if I feel flirty.

+3
source

All Articles