On Wed, Feb 24, 2010 at 17:09:26 +0100, Damian Lesiuk wrote: > (gdb) r > Starting program: /opt/bin/polipo -c /opt/etc/polipo > > > Program received signal SIGPIPE, Broken pipe. > 0x2ab15884 in ?? ()
That's not a crash, polipo ignores SIGPIPE. Tell gdb to 'handle SIGPIPE noprint nostop' before running the program. Besides in order to get a usable trace you need to have debugging symbols for polipo (build with -g, don't run strip). Then when you get a crash, run 'bt full' at the gdb prompt. Cheers, Julien ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Polipo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/polipo-users
