pythonic
pythonic

Reputation: 21615

Ask GDB to list all functions in a program

How can you list all functions in a program with GDB?

Upvotes: 121

Views: 148337

Answers (1)

ks1322
ks1322

Reputation: 35716

info functions prints the names and data types of all defined functions. See 16 Examining the Symbol Table.

Upvotes: 176

Related Questions