| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | This commit was manufactured by cvs2svn to create branch 'PHP_4_0_7'. | SVN Migration | 2001-08-15 | 1 | -804/+0 |
| | | |||||
| * | Whitespace | Zeev Suraski | 2001-08-11 | 1 | -2/+2 |
| | | |||||
| * | - Sync Engine2 CVS with latest Engine CVS | Andi Gutmans | 2001-08-07 | 1 | -3/+4 |
| | | |||||
| * | Avoid going over huge lists of functions, classes and constants. | Zeev Suraski | 2001-08-02 | 1 | -4/+12 |
| | | | | | | Special thanks to the guys from the MS lab for the profiling tools :) | ||||
| * | Some cleanup | Zeev Suraski | 2001-08-02 | 1 | -3/+4 |
| | | |||||
| * | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-31 | 1 | -11/+10 |
| | | |||||
| * | More TSRMLS_FETCH work | Zeev Suraski | 2001-07-30 | 1 | -17/+11 |
| | | |||||
| * | More TSRMLS_FETCH annihilation | Zeev Suraski | 2001-07-30 | 1 | -1/+1 |
| | | |||||
| * | Avoid TSRMLS_FETCH()'s (still lots of work left) | Zeev Suraski | 2001-07-30 | 1 | -2/+2 |
| | | |||||
| * | Redesigned thread safety mechanism - nua nua | Zeev Suraski | 2001-07-28 | 1 | -12/+9 |
| | | |||||
| * | Get rid of ELS_*(), and use TSRMLS_*() instead. | Zeev Suraski | 2001-07-27 | 1 | -24/+24 |
| | | | | | | | This patch is *bound* to break some files, as I must have had typos somewhere. If you use any uncommon extension, please try to build it... | ||||
| * | Improve bailout mechanism, supports nesting of bailouts a-la try..catch | Zeev Suraski | 2001-07-21 | 1 | -4/+4 |
| | | |||||
| * | Implement a more granular shutdown mechanism for the executor - | Zeev Suraski | 2001-07-20 | 1 | -26/+30 |
| | | | | | | prevent corruption of constants and missing destructions of resources | ||||
| * | Fix bug #10467 | Zeev Suraski | 2001-07-16 | 1 | -3/+37 |
| | | |||||
| * | Fix bug #10257 | Zeev Suraski | 2001-07-15 | 1 | -2/+8 |
| | | |||||
| * | Improved interactive mode - it is now available in all builds, without any ↵ | Zeev Suraski | 2001-07-15 | 1 | -8/+15 |
| | | | | | significant slowdown | ||||
| * | - Nuke dependency of all of PHP on zend_execute_locks.h. | Andi Gutmans | 2001-06-21 | 1 | -1/+0 |
| | | |||||
| * | Add missing check | Zeev Suraski | 2001-05-30 | 1 | -1/+1 |
| | | |||||
| * | Hear hear, interactive mode is finally showing some progress: | Zeev Suraski | 2001-05-06 | 1 | -1/+1 |
| | | | | | | | - Support function calls - Fix crash bug | ||||
| * | - Fix crash bug in interactive mode | Andi Gutmans | 2001-04-30 | 1 | -0/+17 |
| | | |||||
| * | - Whitespace changes to be standard like the rest of Zend | Andi Gutmans | 2001-04-27 | 1 | -1/+1 |
| | | |||||
| * | Do case-insensitive class name matching when parsing | Andrei Zmievski | 2001-02-28 | 1 | -2/+8 |
| | | | | | | | array('Class', 'method') structure. You guys can clean it up, if there is a better way. | ||||
| * | - Update copyright year | Andi Gutmans | 2001-02-26 | 1 | -1/+1 |
| | | |||||
| * | - Fix whitespace. | Andi Gutmans | 2001-02-12 | 1 | -3/+3 |
| | | |||||
| * | Fix a bug that could cause corruption in case of an error during | Zeev Suraski | 2001-02-12 | 1 | -0/+11 |
| | | | | | | get_zval_ptr() | ||||
| * | Allow passing class name as well as an object instance to call methods. | Andrei Zmievski | 2001-02-04 | 1 | -3/+11 |
| | | |||||
| * | Set the correct function state during execution. This is mainly to have | Andrei Zmievski | 2001-02-03 | 1 | -0/+2 |
| | | | | | | get_active_function_name() to return proper value. | ||||
| * | More aggressive protection in call_user_function_ex() | Zeev Suraski | 2000-12-24 | 1 | -0/+3 |
| | | |||||
| * | Fix a possible crash bug in call_user_function_ex(), if the function is | Zeev Suraski | 2000-12-23 | 1 | -1/+1 |
| | | | | | | in fact not a user function | ||||
| * | Fix call_user_function() with objects - it could leak under certain ↵ | Zeev Suraski | 2000-12-13 | 1 | -14/+13 |
| | | | | | circumstances | ||||
| * | Fix -a interactive mode (no idea how the previous commit got committed) | Zeev Suraski | 2000-10-11 | 1 | -0/+1 |
| | | |||||
| * | Make compile_string() accept a description of the code | Zeev Suraski | 2000-09-12 | 1 | -2/+2 |
| | | |||||
| * | - Fix bug report by Andrei when using a method as a sort user function | Andi Gutmans | 2000-08-22 | 1 | -0/+2 |
| | | | | | | - parameter in usort() like functions | ||||
| * | The patch we promised - redesigned the compilation/execution API: | Zeev Suraski | 2000-08-09 | 1 | -14/+3 |
| | | | | | | | | | | | | | | | | | | | Advantages: - Smaller memory footprint for the op arrays - Slightly faster compilation times (due to saved erealloc() calls and faster zend_op initialization) - include_once() & require_once() share the same file list - Consistency between include() and require() - this mostly means that return() works inside require()'d files just as it does in include() files (it used to be meaningless in require()'d files, most of the time (see below)) - Made require() consistent with itself. Before, if the argument was not a constant string, require() took the include() behavior (with return()). - Removed lots of duplicate code. Bottom line - require() and include() are very similar now; require() is simply an include() which isn't allowed to fail. Due to the erealloc() calls for large op arrays, require() didn't end up being any faster than include() in the Zend engine. | ||||
| * | Unblock SIGPROF signal when starting timer. | Stanislav Malyshev | 2000-07-03 | 1 | -0/+4 |
| | | | | | | On Linux, this signal is blocked by default after first signal is run | ||||
| * | - Forgot ZEND_API | Andi Gutmans | 2000-07-02 | 1 | -1/+1 |
| | | |||||
| * | error_reporting fix | Zeev Suraski | 2000-06-30 | 1 | -0/+4 |
| | | |||||
| * | Make max_execution_time work properly when set to 0 under Win32 (disable) | Zeev Suraski | 2000-06-26 | 1 | -1/+5 |
| | | |||||
| * | - Add restore_error_handler() | Zeev Suraski | 2000-06-17 | 1 | -1/+5 |
| | | | | | | error_handler's are now stored in a stack | ||||
| * | Allow the symbol_table to be passed to call_user_function_ex() | Zeev Suraski | 2000-06-17 | 1 | -6/+12 |
| | | |||||
| * | Ok, this time here's some real Win32 system programming :) | Zeev Suraski | 2000-06-16 | 1 | -15/+68 |
| | | | | | | | Redesigned the timeout system using a single timeout thread and a single window, and used a much quicker check. | ||||
| * | Fix UNIX build | Andi Gutmans | 2000-06-16 | 1 | -9/+16 |
| | | |||||
| * | - Move timeout code to Zend | Zeev Suraski | 2000-06-16 | 1 | -0/+109 |
| | | | | | | - Implement timeouts in Win32 | ||||
| * | Add optional support for C0x inline semantics. | Sascha Schumann | 2000-06-13 | 1 | -128/+0 |
| | | | | | | | | These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later. | ||||
| * | Add a couple of casts | Sascha Schumann | 2000-06-08 | 1 | -1/+1 |
| | | |||||
| * | Change shutdown order to sort out a crash when assigning a resource id to a ↵ | Zeev Suraski | 2000-06-04 | 1 | -1/+21 |
| | | | | | static. | ||||
| * | Improve call_user_function() to support array($obj, $method) | Zeev Suraski | 2000-06-03 | 1 | -0/+18 |
| | | |||||
| * | Fix a bug in static initializers/default values/class member variables that ↵ | Zeev Suraski | 2000-05-31 | 1 | -4/+11 |
| | | | | | | | | contained array values | ||||
| * | - Make zend_eval_string() return SUCCESS/FAILURE | Andi Gutmans | 2000-05-06 | 1 | -2/+5 |
| | | |||||
| * | Fix - forgot to split away if refcount>1 | Zeev Suraski | 2000-04-26 | 1 | -1/+8 |
| | | |||||
