Changeset 851 for trunk/processor/processor.m4
- Timestamp:
- 2012-03-27T18:07:50+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/processor/processor.m4 (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/processor/processor.m4
r846 r851 431 431 # ifdef ZEND_ENGINE_2_4 432 432 DISABLECHECK(` 433 IFRESTORE(`dst->info.user.filename = processor->entry_ src->filepath;', `PROC_STRING(info.user.filename)')433 IFRESTORE(`dst->info.user.filename = processor->entry_php_src->filepath;', `PROC_STRING(info.user.filename)') 434 434 PROCESS(zend_uint, info.user.line_start) 435 435 PROCESS(zend_uint, info.user.line_end) … … 439 439 DONE(info) 440 440 # else 441 IFRESTORE(`dst->filename = processor->entry_ src->filepath;DONE(filename)', `PROC_STRING(filename)')441 IFRESTORE(`dst->filename = processor->entry_php_src->filepath;DONE(filename)', `PROC_STRING(filename)') 442 442 PROCESS(zend_uint, line_start) 443 443 PROCESS(zend_uint, line_end) … … 709 709 gc_arg_info = 1; 710 710 #endif 711 dst->filename = processor->entry_ src->filepath;711 dst->filename = processor->entry_php_src->filepath; 712 712 #ifdef ZEND_ENGINE_2_4 713 713 if (src->literals /* || op_array_info->literalsinfo_cnt */) { … … 886 886 #endif 887 887 888 IFRESTORE(`dst->filename = processor->entry_ src->filepath;DONE(filename)', `PROC_STRING(filename)')888 IFRESTORE(`dst->filename = processor->entry_php_src->filepath;DONE(filename)', `PROC_STRING(filename)') 889 889 #ifdef IS_UNICODE 890 890 IFRESTORE(` … … 914 914 #endif 915 915 } while (0); 916 IFRESTORE(`xc_fix_op_array_info(processor->entry_ src, processor->php_src, dst, shallow_copy, op_array_info TSRMLS_CC);')916 IFRESTORE(`xc_fix_op_array_info(processor->entry_php_src, processor->php_src, dst, shallow_copy, op_array_info TSRMLS_CC);') 917 917 918 918 #ifdef ZEND_ENGINE_2 … … 1074 1074 PROCESS(zend_ulong, refcount) 1075 1075 1076 PROCESS(size_t, sourcesize)1076 PROCESS(size_t, file_size) 1077 1077 PROCESS(zend_ulong, hits) 1078 1078 PROCESS(size_t, size) … … 1127 1127 dnl }}} 1128 1128 DEF_STRUCT_P_FUNC(`xc_entry_t', , `dnl {{{ 1129 PROCESS(xc_hash_value_t, hvalue) 1130 /* skip */ 1131 DONE(next) 1132 COPY(cache) 1129 1133 PROCESS(xc_entry_type_t, type) 1130 1134 PROCESS(size_t, size) 1131 1132 PROCESS(xc_hash_value_t, hvalue)1133 COPY(cache)1134 /* skip */1135 DONE(next)1136 1137 IFSTORE(`dst->refcount = 0; DONE(refcount)', `PROCESS(long, refcount)')1138 1135 1139 1136 PROCESS(time_t, ctime) … … 1176 1173 1177 1174 case XC_TYPE_VAR: 1178 STRUCT _P(xc_entry_data_var_t, data.var)1175 STRUCT(xc_entry_data_var_t, data.var) 1179 1176 break; 1180 1177 … … 1185 1182 DONE(data) 1186 1183 dnl }}} 1187 PROCESS(time_t, mtime) 1184 ') 1185 dnl }}} 1186 DEF_STRUCT_P_FUNC(`xc_entry_php_t', , `dnl {{{ 1187 STRUCT(xc_entry_t, entry) 1188 1189 IFSTORE(`dst->refcount = 0; DONE(refcount)', `PROCESS(long, refcount)') 1190 PROCESS(time_t, file_mtime) 1188 1191 #ifdef HAVE_INODE 1189 PROCESS(int, device)1190 PROCESS(int, inode)1191 #endif 1192 1193 if (src-> type == XC_TYPE_PHP) {1192 PROCESS(int, file_device) 1193 PROCESS(int, file_inode) 1194 #endif 1195 1196 if (src->entry.type == XC_TYPE_PHP) { 1194 1197 PROCESS(int, filepath_len) 1195 1198 IFRESTORE(`COPY(filepath)', `PROC_STRING_L(filepath, filepath_len)')
Note: See TracChangeset
for help on using the changeset viewer.

