Changeset 766 for branches/1.3/xcache.c
- Timestamp:
- 04/18/2011 06:29:25 AM (2 years ago)
- Location:
- branches/1.3
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.3
-
branches/1.3/xcache.c
r726 r766 1001 1001 /* {{{ restore */ 1002 1002 /* stale precheck */ 1003 if ( cache->compiling) {1003 if (XG(request_time) - cache->compiling < 30) { 1004 1004 cache->clogs ++; /* is it safe here? */ 1005 1005 return old_compile_file(h, type TSRMLS_CC); … … 1010 1010 ENTER_LOCK_EX(cache) { 1011 1011 /* clogged */ 1012 if ( cache->compiling) {1012 if (XG(request_time) - cache->compiling < 30) { 1013 1013 cache->clogs ++; 1014 1014 op_array = NULL;

