In gdb, is it possible to set a breakpoint on a member function called on a particular object? To be more specific, imagine that class A has a member function Foo (). I want the program to stop when Foo is called on a specific object of type A (e.g. 0xFF11DEADBEAF).
Is it possible?
source
share