Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:43028 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 29717 invoked from network); 12 Feb 2009 21:00:25 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Feb 2009 21:00:25 -0000 Authentication-Results: pb1.pair.com smtp.mail=arnaud.lb@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=arnaud.lb@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.218.180 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: arnaud.lb@gmail.com X-Host-Fingerprint: 209.85.218.180 mail-bw0-f180.google.com Received: from [209.85.218.180] ([209.85.218.180:46799] helo=mail-bw0-f180.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F7/83-28940-1ED84994 for ; Thu, 12 Feb 2009 16:00:22 -0500 Received: by bwz28 with SMTP id 28so1300890bwz.23 for ; Thu, 12 Feb 2009 13:00:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:subject:from:to:cc :in-reply-to:references:content-type:date:message-id:mime-version :x-mailer:content-transfer-encoding; bh=JyW9VTeKKIJRE9e/dnJmTDppA+VSURrdGrpmTxNdzN4=; b=T0S1gcVAqedZdncyCq8edi7I0njChAulsXSEWypbtQKhUIe8IMqE5RbXz0e3UINuu7 E5i6qOLTqAcEirMWMx7Gb74JmLrb8WZX5cJq0uTD/ejLv0Dxsmr3Z/e7xaE3HwLuRRo+ w0m6dAiCfy6bYCzESioxfUMoeZcYe9i5FOBPI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:subject:from:to:cc:in-reply-to:references:content-type:date :message-id:mime-version:x-mailer:content-transfer-encoding; b=NhaWMe+JXY+mvX3hNQK9pl84FQXlN3vSRHhCnyT/exjQFUwvCORGFyV0LJYfMDWulc Y4Fgso9WKRAT/yxzLXfzzyBPRaLr4BEoxxsTAAxF2Teb9Nwiy3xq8qco/Rni9ld42o6U NAso5R8qSK/vzBwxLy7qiV11J4ZaK6e3cUi/U= Received: by 10.223.120.197 with SMTP id e5mr289070far.25.1234472401185; Thu, 12 Feb 2009 13:00:01 -0800 (PST) Received: from ?192.168.1.10? (207-177-41-213.getmyip.com [213.41.177.207]) by mx.google.com with ESMTPS id z10sm877303fka.33.2009.02.12.13.00.00 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 12 Feb 2009 13:00:00 -0800 (PST) Sender: Arnaud LB To: Lukas Kahwe Smith Cc: PHP Internals List In-Reply-To: <53C9D049-8C10-48F2-8312-C8A81D2B5990@pooteeweet.org> References: <53C9D049-8C10-48F2-8312-C8A81D2B5990@pooteeweet.org> Content-Type: text/plain Date: Thu, 12 Feb 2009 21:59:58 +0100 Message-ID: <1234472398.4316.34.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] 5.3 todos From: lbarnaud@php.net (Arnaud Le Blanc) Hi, On Wed, 2009-02-11 at 18:07 +0100, Lukas Kahwe Smith wrote: > - pcntl_signal needs declare(ticks) which is deprecated since 5.3 I marked this as a documentation issue. This has been discussed when it was decided to deprecate ticks. Although it would be great to keep ticks, at least for use with signals, nobody said to be able to make ticks safer (or crash-free). > http://bugs.php.net/bug.php?id=46171 - stream_bucket_new() The entry reports that it is not possible to create a new bucket in a user space stream filter while the stream is closing. The reason is that the filter method is called inside of php_stream_free() and at this point the stream resource is not valid (and stream_bucket_new() takes the stream resource as argument). I can't see a way to fix this. Regards, Arnaud