Changeset 235 for trunk/xcache.c

Show
Ignore:
Timestamp:
10/11/2006 12:26:23 AM (2 years ago)
Author:
moo
Message:

cacher: trick in_compilation state, don't trigger __autoload at compile time

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/xcache.c

    r233 r235  
    10751075 
    10761076restore: 
     1077    CG(in_compilation)    = 1; 
     1078    CG(compiled_filename) = stored_xce->name.str.val; 
     1079    CG(zend_lineno)       = 0; 
    10771080#ifdef DEBUG 
    10781081    fprintf(stderr, "restoring\n"); 
     
    11051108        zend_bailout(); 
    11061109    } 
     1110    CG(in_compilation)    = 0; 
     1111    CG(compiled_filename) = NULL; 
    11071112#ifdef DEBUG 
    11081113    fprintf(stderr, "restored\n");