X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=php_http_std_defs.h;h=9f22bcf5c26f0d44cc65ae8155a2470bf6ee8c91;hb=ac3d2543d5be5cc11352451c4dcaca363569dc66;hp=a3a3056f168e49ca52608f4162d3305fce859ac8;hpb=669d2e6a8bdc642b6b52693f4593f199ddd7e8d2;p=m6w6%2Fext-http diff --git a/php_http_std_defs.h b/php_http_std_defs.h index a3a3056..9f22bcf 100644 --- a/php_http_std_defs.h +++ b/php_http_std_defs.h @@ -292,6 +292,20 @@ typedef int STATUS; #endif /* ZEND_ENGINE_2 */ /* }}} */ +#ifdef ZEND_ENGINE_2 +# define with_error_handling(eh, ec) \ + { \ + error_handling_t __eh = PG(error_handling); \ + zend_class_entry *__ec= PG(exception_class); \ + php_set_error_handling(eh, ec TSRMLS_CC); +# define end_error_handling() \ + php_set_error_handling(__eh, __ec TSRMLS_CC); \ + } +#else +# define with_error_handling(eh, ec) +# define end_error_handling() +#endif + #ifndef E_THROW # define E_THROW 0 #endif