Is it possible to disable gdb breakpoints on a per-thread basis?
I have a breakpoint which triggers every 100 milliseconds in the background worker thread. But I need to debug the same location in any other threads. So it would be cool to disable breakpoint only in the background worker thread. Is it possible?
Maybe I can disable thread by adding some specially crafted condition to this breakpoint when I know thread's number?