[Evolution-hackers] how to debug

2001-06-25 Thread Aldy Hernandez
ok, i need to get this receiving email thing working. i have a snapshot on my box, so theoretically i should be able to debug, but i've never debugged a threaded app. can someone give me a few pointers? i'd like to set a breakpoint somewhere in mail_send_receive() so i can step through and

Re: [Evolution-hackers] how to debug

2001-06-25 Thread Jeffrey Stedfast
You'll need to have 2 xterms open, in the first xterm: bash$ export CAMEL_VERBOSE_DEBUG=1 bash$ killev; gdb evolution-mail once inside gdb, you can set the breakpoint by doing: (gdb) b mail_send_recieve Then start the process: (gdb) r Now, wait a good 5 seconds so that evolution-mail can

Re: [Evolution-hackers] how to debug

2001-06-25 Thread Aldy Hernandez
On Mon, Jun 25, 2001 at 11:41:43AM -0400, Jeffrey Stedfast wrote: You'll need to have 2 xterms open, in the first xterm: bash$ export CAMEL_VERBOSE_DEBUG=1 bash$ killev; gdb evolution-mail once inside gdb, you can set the breakpoint by doing: [etc etc etc] neat. thanks. this should go