summaryrefslogtreecommitdiff
path: root/Zend/zend_objects.h
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-12-27 14:35:09 +0000
committerAndi Gutmans <andi@php.net>2001-12-27 14:35:09 +0000
commit73b159e0567683f96a2da78d7a2e60cf0f6f0bbc (patch)
tree5d077c4f72a7868f75649cf12a2f2b23e684ed6c /Zend/zend_objects.h
parentb3fd2faac06a6f9f216070b00ad46c13309fa6b3 (diff)
downloadphp-git-73b159e0567683f96a2da78d7a2e60cf0f6f0bbc.tar.gz
- Experimental support for destructors. We need to see if destructors
- 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.
Diffstat (limited to 'Zend/zend_objects.h')
-rw-r--r--Zend/zend_objects.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_objects.h b/Zend/zend_objects.h
index 91e4d29276..b649163007 100644
--- a/Zend/zend_objects.h
+++ b/Zend/zend_objects.h
@@ -5,6 +5,7 @@
typedef struct _zend_object_bucket {
zend_bool valid;
+ zend_bool constructor_called;
union _bucket {
struct {
zend_object object;