diff options
author | Andi Gutmans <andi@php.net> | 1999-09-20 15:44:30 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-09-20 15:44:30 +0000 |
commit | babad2694e7cfbfe079aa71cf2b68675a8d4411f (patch) | |
tree | 5a746d58b08bd6ac8c4955e31ae342e0cddf897f /Zend/zend_compile.h | |
parent | 4247839610cb9df2fd45fb9bec961672f369144c (diff) | |
download | php-git-babad2694e7cfbfe079aa71cf2b68675a8d4411f.tar.gz |
- First step in fixing locking problem. Array fetches are now always done last.
Later on we will want to delay the write fetches even longer until after their
resulting expression is parsed. The way it is now, will make it very easy
to delay as long as we need.
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r-- | Zend/zend_compile.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h index e69e32d577..23fd4936de 100644 --- a/Zend/zend_compile.h +++ b/Zend/zend_compile.h @@ -364,6 +364,7 @@ void zend_class_add_ref(zend_class_entry *ce); #define ZEND_CLASS_DTOR (int (*)(void *)) destroy_zend_class zend_op *get_next_op(zend_op_array *op_array CLS_DC); +void init_op(zend_op *op CLS_DC); int get_next_op_number(zend_op_array *op_array); int print_class(zend_class_entry *class_entry); void print_op_array(zend_op_array *op_array, int optimizations); |