summaryrefslogtreecommitdiff
path: root/Zend/zend_objects.h
Commit message (Collapse)AuthorAgeFilesLines
* Future-proof email addressesZeev Suraski2018-11-011-2/+2
|
* Remove unused Git attributes identPeter Kokot2018-07-251-2/+0
| | | | | | | | | | | | | | | The $Id$ keywords were used in Subversion where they can be substituted with filename, last revision number change, last changed date, and last user who changed it. In Git this functionality is different and can be done with Git attribute ident. These need to be defined manually for each file in the .gitattributes file and are afterwards replaced with 40-character hexadecimal blob object name which is based only on the particular file contents. This patch simplifies handling of $Id$ keywords by removing them since they are not used anymore.
* year++Xinchen Hui2018-01-021-1/+1
|
* Use fastcall calling convention for objects and resources APIDmitry Stogov2017-12-141-3/+4
|
* further sync for vim mode linesAnatol Belski2017-07-041-0/+2
|
* Update copyright headers to 2017Sammy Kaye Powers2017-01-021-1/+1
|
* bump year which is missed in rev 49493a2Xinchen Hui2016-01-021-1/+1
|
* bump yearXinchen Hui2015-01-151-1/+1
|
* trailing whitespace removalStanislav Malyshev2015-01-101-1/+1
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-6/+6
|
* Fixed destruction of objects and iterators on unclean request shutdown and ↵Dmitry Stogov2014-04-091-1/+0
| | | | | | GC (few cases are still unfixed). Now we destroy objects it two steps. At first - object properties of all objects and only then the objects their selves.
* Use better data structures (incomplete)Dmitry Stogov2014-02-101-6/+5
|
* Bump yearXinchen Hui2014-01-031-1/+1
|
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1998-2009#1998-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-051-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* - MFH: Constness (Added const qualifier to several function parameters)Felipe Pena2008-08-121-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* fix bug #36898 (__set() leaks in classes extending internal ones)Antony Dovgal2006-03-291-0/+2
| | | | | | | | | Added: ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) ZEND_API void zend_object_std_dtor(zend_object *object TSRMLS_DC) to initialize and destroy zend_object structs
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* Bump up the yearfoobar2005-08-031-1/+1
|
* - Revert following patch until we decide what is the right way to handleAndi Gutmans2005-02-241-2/+2
| | | | | | | - this: - Fix signatures they are all meant to be able to deal with any type in any object storage (though we are still missing several parts)
* - Fix signatures they are all meant to be able to deal with any type in anyMarcus Boerger2005-02-221-2/+2
| | | | | object storage (though we are still missing several parts)
* wrap ZEND_API prototypes into BEGIN_EXTERN_C/END_EXTERN_CHartmut Holzgraefe2004-02-181-0/+2
| | | | | for C++ extension support
* Add new prototypeMarcus Boerger2004-02-041-0/+1
|
* - Happy new year and PHP 5 for rest of the files too..foobar2004-01-081-1/+1
| | | | | # Should the LICENSE and Zend/LICENSE dates be updated too?
* Shuffle code to ease writing clone handlersMarcus Boerger2003-07-191-0/+1
|
* updating license information in the headers.James Cox2003-06-101-1/+1
|
* Eliminate TSRMLS_FETCH() calls in zend_objects_new() and ↵Sebastian Bergmann2003-03-261-2/+2
| | | | zend_objects_get_address().
* - Added some missing CVS $Id$ tags, headers and footers.foobar2003-02-011-0/+29
|
* export zend_objects_destroy_object()Harald Radi2003-01-171-0/+1
| | | | | | | static inline was meaningless anyways as the function was only used as a callback handler and was never called directly
* Add ZEND_API to functionsStanislav Malyshev2002-08-081-2/+2
|
* - Export zend_object_get_address()Andi Gutmans2002-07-011-1/+1
|
* - Fix copy&paste problem where we allocated according to an old structureAndi Gutmans2002-06-151-21/+0
| | | | | - decleration and not the new one.
* Generalize object storage and reference bookkeepingStanislav Malyshev2002-05-311-8/+0
|
* - constructor_called is supposed to be destructor_calledAndi Gutmans2002-05-141-1/+1
|
* added get_class_entry callback handler to theHarald Radi2002-04-221-2/+0
| | | | | object handlers structure
* - Pass TSRMLS to callbacks.Andi Gutmans2002-03-151-4/+4
|
* Mega-commit: Enter the new object modelStanislav Malyshev2002-02-071-5/+9
| | | | | | | Note: only standard Zend objects are working now. This is definitely going to break custom objects like COM, Java, etc. - this will be fixed later. Also, this may break other things that access objects' internals directly.
* - First destructor hell fix. There was a situation where an object'sAndi Gutmans2002-01-251-0/+1
| | | | | | | | | | - destructor could be run after its class was already dead. Right now - object destructors is the first thing whic happens during shutdown in - order to prevent this problem. It's very likely that destructors will - cause more grief and we'll have to outline exactly when you should use - them and what kind of logic you're allowed to do inside of them. - This bug was reported by sebastian.
* - Experimental support for destructors. We need to see if destructorsAndi Gutmans2001-12-271-0/+1
| | | | | | | - will actually work well in the context of PHP so we should consider this - as experimental. Possible problems might be that when the constructor is - run PHP might not be in a stable state.
* add newline at end of file to avoid warningsStig S. Bakken2001-11-051-1/+1
|
* - Fix a bug in method calls.Andi Gutmans2001-08-161-0/+1
| | | | | - Try to get the old copying behavior of objects to work (doesn't work yet).
* - Fix some places which create objects. The fixes are ugly and will beAndi Gutmans2001-08-111-1/+1
| | | | | revised when things start working well
* - Sync Engine2 CVS with latest Engine CVSAndi Gutmans2001-08-071-0/+34