[PHP-CVS] cvs: php-src /ext/spl config.m4 config.w32 php_spl.c spl_fastarray.c spl_fastarray.h spl_fixedarray.c spl_fixedarray.h /ext/spl/tests fastarray_001.phpt fastarray_002.phpt fastarray_003.php

2008-06-18 Thread Etienne Kneuss
colder Wed Jun 18 14:54:28 2008 UTC Added files: /php-src/ext/splspl_fixedarray.c spl_fixedarray.h /php-src/ext/spl/tests fixedarray_001.phpt fixedarray_002.phpt fixedarray_003.phpt fixedarray_004.phpt

[PHP-CVS] cvs: php-src /ext/spl config.m4 config.w32 php_spl.c spl_dllist.c spl_engine.c spl_engine.h spl_fastarray.c spl_fastarray.h /ext/spl/tests fastarray_001.phpt fastarray_002.phpt fastarray_00

2008-06-06 Thread Etienne Kneuss
colder Fri Jun 6 23:53:10 2008 UTC Added files: /php-src/ext/splspl_fastarray.c spl_fastarray.h /php-src/ext/spl/tests fastarray_001.phpt fastarray_002.phpt fastarray_003.phpt Modified files: /php

[PHP-CVS] cvs: php-src /ext/spl config.m4

2008-04-09 Thread Marcus Boerger
helly Wed Apr 9 21:47:29 2008 UTC Modified files: /php-src/ext/splconfig.m4 Log: - SPL can no longer be disabld as discussed some time ago (checked back with RM) http://cvs.php.net/viewvc.cgi/php-src/ext/spl/config.m4?r1=1.24&r2=1.25&diff_format=u Index:

[PHP-CVS] cvs: php-src /ext/spl config.m4 config.w32 php_spl.c spl_heap.c spl_heap.h /ext/spl/tests heap_001.phpt heap_002.phpt heap_003.phpt heap_004.phpt heap_005.phpt heap_006.phpt heap_007.phpt h

2008-02-25 Thread Etienne Kneuss
colder Mon Feb 25 23:36:36 2008 UTC Added files: /php-src/ext/splspl_heap.c spl_heap.h /php-src/ext/spl/tests heap_001.phpt heap_002.phpt heap_003.phpt heap_004.phpt heap_005.phpt heap_006.phpt

[PHP-CVS] cvs: php-src /ext/spl config.m4

2006-11-12 Thread Hannes Magnusson
bjori Sun Nov 12 19:01:33 2006 UTC Modified files: /php-src/ext/splconfig.m4 Log: MFB: add missing headers http://cvs.php.net/viewvc.cgi/php-src/ext/spl/config.m4?r1=1.20&r2=1.21&diff_format=u Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/con

[PHP-CVS] cvs: php-src /ext/spl config.m4

2006-09-20 Thread Andrei Zmievski
andrei Wed Sep 20 20:29:24 2006 UTC Modified files: /php-src/ext/splconfig.m4 Log: Install SPL headers. http://cvs.php.net/viewvc.cgi/php-src/ext/spl/config.m4?r1=1.19&r2=1.20&diff_format=u Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/config.

[PHP-CVS] cvs: php-src /ext/spl config.m4 spl_iterators.c spl_iterators.h /ext/spl/tests iterator_030.phpt iterator_031.phpt

2006-03-03 Thread Marcus Boerger
helly Fri Mar 3 21:35:16 2006 UTC Added files: /php-src/ext/spl/tests iterator_030.phpt iterator_031.phpt Modified files: /php-src/ext/splconfig.m4 spl_iterators.c spl_iterators.h Log: - Fix SEGV with AppendIterator when base cl

[PHP-CVS] cvs: php-src /ext/spl config.m4

2006-01-06 Thread Jani Taskinen
sniper Fri Jan 6 14:03:28 2006 UTC Modified files: /php-src/ext/splconfig.m4 Log: - Fix configure on Solaris http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/config.m4?r1=1.16&r2=1.17&diff_format=u Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/con

[PHP-CVS] cvs: php-src /ext/spl config.m4

2005-12-24 Thread Marcus Boerger
helly Sat Dec 24 13:19:49 2005 EDT Modified files: /php-src/ext/splconfig.m4 Log: - MFB Make this work with VPATH builds too http://cvs.php.net/viewcvs.cgi/php-src/ext/spl/config.m4?r1=1.15&r2=1.16&diff_format=u Index: php-src/ext/spl/config.m4 diff -u php

Re: [PHP-CVS] cvs: php-src /ext/spl config.m4 spl_observer.c

2005-12-22 Thread Andi Gutmans
It's hard for me to believe though that memset() plus copying some values is noticeably slower. For such small structures I doubt it has any impact on the SPL Iterator performance (you're allocating on stack so allocation is not an issue). You can keep it this way, but my $.02 would be to only h

Re: [PHP-CVS] cvs: php-src /ext/spl config.m4 spl_observer.c

2005-12-22 Thread Marcus Boerger
Hello Andi, we would need to enforce structure packing change the type of zend_object_handle in zend_object_value or both. But even if we go that way we are not sure it works, so the only way that would always work is the memset. However setting all structure bytes to zero while on many platform

Re: [PHP-CVS] cvs: php-src /ext/spl config.m4 spl_observer.c

2005-12-22 Thread Andi Gutmans
Are you sure you want to fix it this way? It'll make things less maintainable. I'm sure there's a way to make it one implementation that works everywhere. At 01:36 PM 12/20/2005, Marcus Boerger wrote: helly Tue Dec 20 21:36:48 2005 EDT Modified files: /php-src/ext/splconfi

[PHP-CVS] cvs: php-src /ext/spl config.m4 spl_observer.c

2005-12-20 Thread Marcus Boerger
helly Tue Dec 20 21:36:48 2005 EDT Modified files: /php-src/ext/splconfig.m4 spl_observer.c Log: - Only apply workaround solution for 64 bit machines when necessary # Actually this can already be necessary on 32 bit machine and also not be # necessary on

[PHP-CVS] cvs: php-src /ext/spl config.m4 config.w32 php_spl.c spl.php spl_observer.c spl_observer.h /ext/spl/tests observer_001.phpt

2005-02-08 Thread Marcus Boerger
helly Tue Feb 8 15:42:48 2005 EDT Added files: /php-src/ext/splspl_observer.c spl_observer.h /php-src/ext/spl/tests observer_001.phpt Modified files: /php-src/ext/splconfig.m4 config.w32 php_spl.c spl.php Log: - Initial

[PHP-CVS] cvs: php-src /ext/spl config.m4 config.w32 php_spl.c spl.php spl_exceptions.c spl_exceptions.h

2004-11-01 Thread Marcus Boerger
helly Mon Nov 1 10:50:26 2004 EDT Added files: /php-src/ext/splspl_exceptions.c spl_exceptions.h Modified files: /php-src/ext/splconfig.m4 config.w32 php_spl.c spl.php Log: - Implement basic exception classes http://cvs.php.

[PHP-CVS] cvs: php-src /ext/spl config.m4

2004-02-09 Thread Jani Taskinen
sniper Mon Feb 9 13:18:01 2004 EDT Modified files: /php-src/ext/splconfig.m4 Log: ws http://cvs.php.net/diff.php/php-src/ext/spl/config.m4?r1=1.9&r2=1.10&ty=u Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/config.m4:1.9 php-src/ext/spl/config.m4:

[PHP-CVS] cvs: php-src /ext/spl config.m4

2004-01-19 Thread Christian Stocker
chregu Mon Jan 19 06:07:19 2004 EDT Modified files: /php-src/ext/splconfig.m4 Log: fix typo Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/config.m4:1.8 php-src/ext/spl/config.m4:1.9 --- php-src/ext/spl/config.m4:1.8 Mon Jan 19 03:48:30 2004

[PHP-CVS] cvs: php-src /ext/spl config.m4

2004-01-19 Thread Derick Rethans
derick Mon Jan 19 03:32:26 2004 EDT Modified files: /php-src/ext/splconfig.m4 Log: - Being picky :) Index: php-src/ext/spl/config.m4 diff -u php-src/ext/spl/config.m4:1.6 php-src/ext/spl/config.m4:1.7 --- php-src/ext/spl/config.m4:1.6 Sun Jan 18 10