[Zope] python core dumps on freebsd

Matthew T. Kromer matt@zope.com
Mon, 03 Feb 2003 15:14:14 -0500


george donnelly wrote:

>Here is the output from /var/log/messages on the latest batch of core dumps:
>
>Feb  3 08:26:08 alpha /kernel: pid 84972 (python2.1), uid 1006: exited on
>signal 11 (core dumped)
>Feb  3 08:26:17 alpha /kernel: pid 92001 (python2.1), uid 1006: exited on
>signal 11 (core dumped)
>Feb  3 08:26:31 alpha /kernel: pid 92010 (python2.1), uid 1006: exited on
>signal 10 (core dumped)
>Feb  3 08:30:03 alpha /kernel: pid 92026 (python2.1), uid 1006: exited on
>signal 10 (core dumped)
>
>I'd appreciate any advice on how to go about analyzing this and finding a
>solution. thanks.
>  
>
If you have the cores from them try running gdb on the core to find out 
where it was when it died.

It's still possible you ran out of stack depending on how much that 
patch added.  I normally only make the stack about 128k per thread on 
BSD, and its possible that is a bit small.

Bus errors imply that data to a system call was incorrect (not properly 
aligned, not mapped, etc).