Changeset 260

Show
Ignore:
Timestamp:
08/03/06 12:47:59 (2 years ago)
Author:
bart
Message:

zend_do_inheritance can't be called with TSRMLS_CC when using

php 4, this also means that eAccelerator won't work with threading!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/branches/0.9.5/ChangeLog

    r257 r260  
     12006-08-03  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
     2 
     3        * zend_do_inheritance can't be called with TSRMLS_CC when using  
     4          php 4, this also means that eAccelerator won't work with threading! 
     5 
    162006-07-30  Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 
    27 
  • eaccelerator/branches/0.9.5/ea_restore.c

    r241 r260  
    904904#endif 
    905905        if (to->parent) 
     906#ifdef ZEND_ENGINE_2 
    906907                zend_do_inheritance(to, to->parent TSRMLS_CC); 
     908#else 
     909        zend_do_inheritance(to, to->parent); 
     910#endif 
    907911        EAG(class_entry) = old; 
    908912