Content #
There are three ways to instruct GDB to pause execution of your program, what are they?
- A breakpoint tells GDB to pause execution at a particular locationwithin the program.
- A watchpoint tells GDB to pause execution when a particular memory location (or an expression involving one or more locations) changes value.
- A catchpoint tells GDB to pause execution when a particular event occurs.