[PHP-CVS] com php-src: fix NEWS: NEWS

2013-03-18 Thread Stanislav Malyshev
Commit:87c8ea15f29cd89e8a58d2f6dce4348453c6ac59 Author:Stanislav Malyshev s...@php.net Mon, 18 Mar 2013 00:52:15 -0700 Parents: 62364e6e01092911fa11e6d28f9acc3ed9af07e8 Branches: PHP-5.3 PHP-5.4 PHP-5.5 master Link:

[PHP-CVS] com php-src: fix NEWS: NEWS

2013-03-18 Thread Stanislav Malyshev
Commit:db4d473d53b7b89ac01b3337a94ece4a07a6444f Author:Stanislav Malyshev s...@php.net Mon, 18 Mar 2013 00:51:16 -0700 Parents: 85d9d85ce27cf46d26b2717a5cfc3b8f917116ef Branches: PHP-5.4 PHP-5.5 master Link:

[PHP-CVS] com php-src: Add oom, wasted, hash and manual restart counters to help identify potential configuration problems: ext/opcache/ZendAccelerator.c ext/opcache/ZendAccelerator.h ext/opcache/zend

2013-03-18 Thread Dmitry Stogov
Commit:1fe43d07989316d308e4dfd6989038fa09a51ff1 Author:Dmitry Stogov dmi...@zend.com Mon, 18 Mar 2013 13:13:35 +0400 Parents: ccf7d7cc93d91e621a5dfac341fd6e4dafdf4aaa Branches: PHP-5.5 master Link:

[PHP-CVS] com php-src: Avoid trailing line break: ext/opcache/zend_accelerator_module.c

2013-03-18 Thread Dmitry Stogov
Commit:5b0879e7c969e0bd87b0ad6fad03e278a0a46642 Author:Dmitry Stogov dmi...@zend.com Mon, 18 Mar 2013 13:36:31 +0400 Parents: a9684532ebda83e2459da4f6f450a37f4ee6ff7b Branches: PHP-5.5 master Link:

Re: [PHP-CVS] com php-src: Avoid trailing line break: ext/opcache/zend_accelerator_module.c

2013-03-18 Thread Andrey Hristov
On 03/18/2013 10:36 AM, Dmitry Stogov wrote: Commit:5b0879e7c969e0bd87b0ad6fad03e278a0a46642 Author:Dmitry Stogov dmi...@zend.com Mon, 18 Mar 2013 13:36:31 +0400 Parents: a9684532ebda83e2459da4f6f450a37f4ee6ff7b Branches: PHP-5.5 master Link:

Re: [PHP-CVS] com php-src: Avoid trailing line break: ext/opcache/zend_accelerator_module.c

2013-03-18 Thread Dmitry Stogov
Hi Andrey, I don't think it makes a lot of sense to make it in only this particular place. We use int in thousands other places (near everywhere across PHP sources). Thanks. Dmitry. On Mon, Mar 18, 2013 at 5:09 PM, Andrey Hristov p...@hristov.com wrote: could you use size_t instead of len?

Re: [PHP-CVS] com php-src: Avoid trailing line break: ext/opcache/zend_accelerator_module.c

2013-03-18 Thread Pierre Joye
hi Dmitry, On Mon, Mar 18, 2013 at 2:40 PM, Dmitry Stogov dmi...@zend.com wrote: Hi Andrey, I don't think it makes a lot of sense to make it in only this particular place. We use int in thousands other places (near everywhere across PHP sources). Well it makes sense and as this code is new,

Re: [PHP-CVS] com php-src: Avoid trailing line break: ext/opcache/zend_accelerator_module.c

2013-03-18 Thread Andrey Hristov
On 03/18/2013 02:40 PM, Dmitry Stogov wrote: Hi Andrey, I don't think it makes a lot of sense to make it in only this particular place. We use int in thousands other places (near everywhere across PHP sources). A journey of a thousand miles begins with a single step Lau-Tzu :) Thanks.