Changeset 832 in svn for trunk/xcache.h
- Timestamp:
- 2012-03-23T16:17:34Z (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.h
r823 r832 272 272 } xc_cache_t; 273 273 /* }}} */ 274 /* {{{ xc_op_array_info_detail_t */ 275 typedef struct { 276 zend_uint index; 277 zend_uint info; 278 } xc_op_array_info_detail_t; 279 /* }}} */ 274 280 /* {{{ xc_op_array_info_t */ 275 281 typedef struct { 276 282 #ifdef ZEND_ENGINE_2_4 277 283 zend_uint literalinfo_cnt; 278 int *literalinfos;284 xc_op_array_info_detail_t *literalinfos; 279 285 #else 280 286 zend_uint oplineinfo_cnt; 281 int *oplineinfos;287 xc_op_array_info_detail_t *oplineinfos; 282 288 #endif 283 289 } xc_op_array_info_t; … … 459 465 /* }}} */ 460 466 void xc_gc_add_op_array(xc_gc_op_array_t *gc_op_array TSRMLS_DC); 461 void xc_fix_op_array_info(const xc_entry_t *xce, const xc_entry_data_php_t *php, zend_op_array *op_array, int shallow_cop ied, const xc_op_array_info_t *op_array_info TSRMLS_DC);467 void xc_fix_op_array_info(const xc_entry_t *xce, const xc_entry_data_php_t *php, zend_op_array *op_array, int shallow_copy, const xc_op_array_info_t *op_array_info TSRMLS_DC); 462 468 463 469 #endif /* __XCACHE_H */
Note: See TracChangeset
for help on using the changeset viewer.