Re: GDB - Can I See Every Symbol Called?

2013-01-28 Thread Tom Tromey
Michael == Michael Meeks michael.me...@suse.com writes: MichaelIIWY I'd insert a break-point thus: Michaelbreak unotxdoc.cxx:12345 Michaelwhere 12345 is the line-number of the lcl_ function that Michael is most likely inlined (as static 's tend to be) which usually

Re: GDB - Can I See Every Symbol Called?

2013-01-28 Thread Tom Tromey
Joel == Joel Madero jmadero@gmail.com writes: Joel I've finally gotten comfortable with gdb as far as break points and Joel what not. What I want to know is if there is a way for me to see all Joel symbols called during a given run of soffice. Getting a log that shows Joel every symbol

Re: GDB - Can I See Every Symbol Called?

2013-01-27 Thread Riccardo Magliocchetti
Il 27/01/2013 06:49, Joel Madero ha scritto: static void lcl_SavePrintUIOptionsToDocumentPrintData Add a backtrace here is what is saving print options and that it's being called regardless of if cancel or ok is being pushed (no good). So I'm trying to track down something that is only

Re: GDB - Can I See Every Symbol Called?

2013-01-27 Thread Michael Meeks
On Sat, 2013-01-26 at 21:49 -0800, Joel Madero wrote: static void lcl_SavePrintUIOptionsToDocumentPrintData is what is saving print options and that it's being called regardless of if cancel or ok is being pushed (no good). So I'm trying to track down something that is only called when

Re: GDB - Can I See Every Symbol Called?

2013-01-26 Thread Michael Meeks
Hi Joel, On Fri, 2013-01-25 at 15:13 -0800, Joel Madero wrote: I've finally gotten comfortable with gdb as far as break points and what not. What I want to know is if there is a way for me to see all symbols called during a given run of soffice. Not that I know of :-) Getting a log

Re: GDB - Can I See Every Symbol Called?

2013-01-26 Thread Joel Madero
On 01/26/2013 03:25 AM, Michael Meeks wrote: Hi Joel, On Fri, 2013-01-25 at 15:13 -0800, Joel Madero wrote: I've finally gotten comfortable with gdb as far as break points and what not. What I want to know is if there is a way for me to see all symbols called during a given run of soffice.

GDB - Can I See Every Symbol Called?

2013-01-25 Thread Joel Madero
Hi All, I've finally gotten comfortable with gdb as far as break points and what not. What I want to know is if there is a way for me to see all symbols called during a given run of soffice. Getting a log that shows every symbol called would allow me to compare to runs of libreoffice, one where I