libcwdversion 2.0.0
The C++ Debugging Support Library
Loading...
Searching...
No Matches
Starting A gdb Session From A Running Program

Using attach_gdb().

A running program can initiate a gdb session by calling the function attach_gdb().

For example,

if (counter == 31523 && ptr == (void*)0x40013fa0) // When to start debugging?
attach_gdb();
);
ptr->foobar++; // The debugging will start at this line.
#define Debug(...)
Encapsulation macro for general debugging code.
Definition debug.h:69

The function attach_gdb() opens an xterm (or whatever is configured in the rcfile) and starts the gdb session inside it.

After exiting gdb the application will continue running.

In order for attach_gdb() to work, you will need to call read_rcfile() at the start of your application.