Print arguments of function without symbols table

Viewed 280

I want to dump with gdb prams of function foo(struct a*, struct b*).

The issue is that in the debugged file only foo symbol is available, but not the params:

(gdb) info args
No symbol table info available.

Is there some way to let gdb know what the signature of the function is?

0 Answers
Related