Re: [PHP-DEV] [PATCH] fpm/feature: apache_like or dynamic spawning (for testing)

2009-12-14 Thread Antony Dovgal
On 13.12.2009 22:06, Jérôme Loyet wrote: Hi all, I spent some time working on the missing apache_like feature in FPM. The attached patch is the first version and is for testing. Ok, I'll look at this patch more closely later this day (hopefully). Other patches are already committed, thanks

[PHP-DEV] PHP 6 Bug Summary Report

2009-12-14 Thread internals
PHP 6 Bug Database summary - http://bugs.php.net/ Num Status Summary (108 total -- which includes 46 feature requests) ===[*General Issues]== 50189 Open [PATCH] - unicode byte order difference between SPARC and x86

Re: [PHP-DEV] [PATCH] fpm/feature: apache_like or dynamic spawning (for testing)

2009-12-14 Thread Antony Dovgal
On 13.12.2009 22:06, Jérôme Loyet wrote: Hi all, I spent some time working on the missing apache_like feature in FPM. The attached patch is the first version and is for testing. Committed, thanks! -- Wbr, Antony Dovgal --- http://pinba.org - realtime statistics for PHP -- PHP

[PHP-DEV] [PATCH] fpm/typo: change some log about dynamic + homogenize log message about pool

2009-12-14 Thread Jérôme Loyet
Hi tony, There is several things in this patch: 1- makes log message about pool concistent. I set it to [pool %s] message. Before there where different variants: pool %s, foo (pool %s) bar [pool %s] [%s] 2- corrects some log messages which were not very meaningful for end users 3- Some log

[PHP-DEV] safe_address optimization for 64 bit size_t for platforms other than x86_64.

2009-12-14 Thread Basant Kukreja
Hi, On non x86_64 platforms current implementation of safe_address uses doubles for 64 bit php which is very expensive on some architectures e.g sparc. safe_address function calculates nmemb * size + offset and it want to make sure that it output doesn't overflow. My colleague Richard Smith