tags:

views:

77

answers:

1

If I accidentally launch tab completion when debugging large binary, gdb will freeze for some time scanning symbol table (up to 1 minute in my case). So I have to wait until whole symbol table is scanned. Is there any way to interrupt this process in gdb?

A: 

Control c should interrupt it. Have you tried that?

If it doesn't work, you may need a more recent version of gdb.

Michael Snyder