Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43509 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 47154 invoked from network); 27 Mar 2009 07:09:25 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 27 Mar 2009 07:09:25 -0000 Authentication-Results: pb1.pair.com header.from=wrowe@rowe-clan.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=wrowe@rowe-clan.net; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain rowe-clan.net from 64.202.165.33 cause and error) X-PHP-List-Original-Sender: wrowe@rowe-clan.net X-Host-Fingerprint: 64.202.165.33 smtpauth11.prod.mesa1.secureserver.net Received: from [64.202.165.33] ([64.202.165.33:51166] helo=smtpauth11.prod.mesa1.secureserver.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E2/46-30978-4AB7CC94 for ; Fri, 27 Mar 2009 02:09:24 -0500 Received: (qmail 15562 invoked from network); 27 Mar 2009 07:09:21 -0000 Received: from unknown (62.12.11.198) by smtpauth11.prod.mesa1.secureserver.net (64.202.165.33) with ESMTP; 27 Mar 2009 07:09:19 -0000 Message-ID: <49CC7B49.3070903@rowe-clan.net> Date: Fri, 27 Mar 2009 08:07:53 +0100 User-Agent: Thunderbird 2.0.0.21 (Windows/20090302) MIME-Version: 1.0 To: jvlad CC: internals@lists.php.net References: <91365.8780.qm@web8604.mail.in.yahoo.com> <49CB3C0F.8090908@lerdorf.com> <798982.8787.qm@web8602.mail.in.yahoo.com> <49CB613B.4070004@rowe-clan.net> <1B.DA.30978.FF5CBC94@pb1.pair.com> In-Reply-To: <1B.DA.30978.FF5CBC94@pb1.pair.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] problem with apache segfault From: wrowe@rowe-clan.net ("William A. Rowe, Jr.") jvlad wrote: >> >>> #2 0x00002aaaac145afb in apr_pool_destroy () from >>> /usr/lib64/libapr-1.so.0 >>> No symbol table info available. >> See http://httpd.apache.org/dev/debugging.html on how to grab the >> -win32-symbols.zip package. Unpack it over httpd and you will probably >> have more legible backtraces. Ensure you have all the debugging symbols >> for php you'll have something completely legible. > > aha, and /usr/local/src/php/php-5.2.9/Zend/zend_vm_execute.h is a very > common path under Win32 :) Here? Yea, it is. But looking at the libapr-1.so.0 module, agreed that I've misread this :) > @Rathnakar Konda, is it possible that php was compiled against wrong Apache > headers? Did you install something like OS-supplied httpd-devel package to > compile php or grabbed apache sources from their web site? I'm not used to seeing bad stack unwinds on unix, most people don't optimize that aggressively. If this is system-httpd, that's fine; if you installed an httpd package, there is likely an httpd-devel package that also includes the debugging symbols you need (unstripped). If not and you've built this, you can simply try -O0, or -g, or for httpd --enable-maintainer-mode, but offhand I can't think of a trivial way to simply avoid -strip, which is what you want for your build when things go wonky in your gdb where output. Bill