Changeset 183 for eaccelerator/trunk/ea_restore.h
- Timestamp:
- 03/07/06 22:44:26 (3 years ago)
- Files:
-
- eaccelerator/trunk/ea_restore.h (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ea_restore.h
- Property svn:keywords changed from Author Date Id Revision to svn:eol-style
r176 r183 23 23 | A copy is availble at http://www.gnu.org/copyleft/gpl.txt | 24 24 +----------------------------------------------------------------------+ 25 $Id $25 $Id: ea_restore.h 176 2006-03-05 12:18:54Z bart $ 26 26 */ 27 27 … … 30 30 31 31 #define FIXUP(x) if((x)!=NULL) {(x) = (void*)(((char*)(x)) + ((long)(EAG(mem))));} 32 void fixup_op_array (eaccelerator_op_array * from TSRMLS_DC); 33 void fixup_class_entry (eaccelerator_class_entry * from TSRMLS_DC); 32 void fixup_op_array(eaccelerator_op_array *from TSRMLS_DC); 33 void fixup_class_entry(eaccelerator_class_entry *from TSRMLS_DC); 34 void fixup_zval(zval *z TSRMLS_DC); 34 35 35 void restore_zval(zval * zv TSRMLS_DC);36 void restore_zval(zval *zv TSRMLS_DC); 36 37 void restore_class(mm_fc_entry *p TSRMLS_DC); 37 38 void restore_function(mm_fc_entry *p TSRMLS_DC); 38 39 zend_op_array* restore_op_array(zend_op_array *to, eaccelerator_op_array *from TSRMLS_DC); 39 zend_class_entry *restore_class_entry(zend_class_entry * to, eaccelerator_class_entry *from TSRMLS_DC);40 zend_class_entry *restore_class_entry(zend_class_entry *to, eaccelerator_class_entry *from TSRMLS_DC); 40 41 void restore_class_parent(char *parent, int len, zend_class_entry *to TSRMLS_DC); 41 42 #ifdef ZEND_ENGINE_2