Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:25636 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 99420 invoked by uid 1010); 12 Sep 2006 18:42:54 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 99405 invoked from network); 12 Sep 2006 18:42:54 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Sep 2006 18:42:54 -0000 Authentication-Results: pb1.pair.com header.from=ralph@smashlabs.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=ralph@smashlabs.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain smashlabs.com from 69.2.42.244 cause and error) X-PHP-List-Original-Sender: ralph@smashlabs.com X-Host-Fingerprint: 69.2.42.244 unknown Linux 2.4/2.6 Received: from [69.2.42.244] ([69.2.42.244:51410] helo=users.smashlabs.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 19/3B-02095-CAFF6054 for ; Tue, 12 Sep 2006 14:42:54 -0400 Received: (qmail 8 invoked from network); 12 Sep 2006 13:42:38 -0500 Received: from unknown (HELO ?152.67.136.141?) (ralph@smashlabs.com@66.179.208.36) by 244.42.ntg.com with AES256-SHA encrypted SMTP; 12 Sep 2006 13:42:38 -0500 Message-ID: <4506FF9D.4030903@smashlabs.com> Date: Tue, 12 Sep 2006 13:42:37 -0500 User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: internals Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Acceptable Seg Faults? From: ralph@smashlabs.com (Ralph Schindler) The following script produces a seg fault: _start(); } public function _start() { $this->_myCall(); } public function _myCall() { $this->_start(); } } I assume this is b/c its recursively diving into Class function/method calls and we are filling memory.. Is this detectable? Should I file a bug report or is this known? Ideally it would be nice to see a fatal error thrown, if this is indeed detectable. PHP 5.1.6 / Linux 2.6 / Apache 2 [notice] child pid 6688 exit signal Segmentation fault (11) -Ralph