summaryrefslogtreecommitdiff
path: root/Zend/zend_compile.h
diff options
context:
space:
mode:
authorSebastian Bergmann <sebastian@php.net>2003-03-26 07:44:11 +0000
committerSebastian Bergmann <sebastian@php.net>2003-03-26 07:44:11 +0000
commit3fc852824fb2ff8a9d090594bdf33d1d086d9af4 (patch)
tree78a9bcc9ea85b1bac090df7f4c597bc844d23fe5 /Zend/zend_compile.h
parent866332a4b835fe00de4278d9b41b32afb37a7244 (diff)
downloadphp-git-3fc852824fb2ff8a9d090594bdf33d1d086d9af4.tar.gz
Eliminate TSRMLS_FETCH() calls in destroy_op_array() and zend_get_class_entry().
Diffstat (limited to 'Zend/zend_compile.h')
-rw-r--r--Zend/zend_compile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_compile.h b/Zend/zend_compile.h
index 30a3ba2131..2cd1669fcf 100644
--- a/Zend/zend_compile.h
+++ b/Zend/zend_compile.h
@@ -433,13 +433,13 @@ ZEND_API zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC);
ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, ...);
ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC);
ZEND_API void init_op_array(zend_op_array *op_array, zend_uchar type, int initial_ops_size TSRMLS_DC);
-ZEND_API void destroy_op_array(zend_op_array *op_array);
+ZEND_API void destroy_op_array(zend_op_array *op_array TSRMLS_DC);
ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC);
ZEND_API void zend_file_handle_dtor(zend_file_handle *fh);
ZEND_API int zend_cleanup_class_data(zend_class_entry **pce TSRMLS_DC);
ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC);
-ZEND_API void destroy_zend_function(zend_function *function);
+ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC);
ZEND_API void destroy_zend_class(zend_class_entry **pce);
void zend_class_add_ref(zend_class_entry **ce);