Changeset 139
- Timestamp:
- 11/22/05 21:59:12 (3 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r138 r139 1 2005-11-22 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Some compile fixes from Chmouel Boudjnah 4 1 5 2005-11-20 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 6 eaccelerator/trunk/eaccelerator.c
r138 r139 1127 1127 1128 1128 if (zend_is_executing(TSRMLS_C)) { 1129 int tryname_length; 1129 1130 strncpy(tryname, zend_get_executed_filename(TSRMLS_C), MAXPATHLEN); 1130 1131 tryname[MAXPATHLEN - 1] = 0; 1131 inttryname_length = strlen(tryname);1132 tryname_length = strlen(tryname); 1132 1133 1133 1134 while (tryname_length >= 0 && !IS_SLASH(tryname[tryname_length])) … … 1252 1253 time_t compile_time; 1253 1254 int stat_result = 0; 1255 struct timeval tv_start; 1254 1256 1255 1257 #ifdef EACCELERATOR_USE_INODE … … 1257 1259 #endif 1258 1260 1259 struct timeval tv_start;1260 1261 ea_debug_printf(EA_TEST_PERFORMANCE, "[%d] Enter COMPILE\n",getpid()); 1261 1262 ea_debug_start_time(&tv_start);