Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'before-sapi-split'.before-sapi-split | SVN Migration | 1999-09-26 | 1 | -440/+0 |
| | |||||
* | Add a file in which we can put Zend builtin functions | Zeev Suraski | 1999-09-20 | 1 | -0/+3 |
| | |||||
* | Make this class instanciatable | Zeev Suraski | 1999-09-12 | 1 | -1/+1 |
| | |||||
* | - Shift around header files. | Andi Gutmans | 1999-09-05 | 1 | -3/+3 |
| | |||||
* | Fix for Thies's UMR | Zeev Suraski | 1999-08-20 | 1 | -3/+3 |
| | |||||
* | - Add some ZENDAPI's | Andi Gutmans | 1999-08-17 | 1 | -4/+4 |
| | |||||
* | 0.91 update | Zeev Suraski | 1999-07-19 | 1 | -2/+2 |
| | |||||
* | License update | Zeev Suraski | 1999-07-16 | 1 | -4/+7 |
| | |||||
* | Change true/false back to 1/"" | Andi Gutmans | 1999-07-15 | 1 | -0/+10 |
| | |||||
* | Fix thread unsafe constants startup | Andi Gutmans | 1999-07-14 | 1 | -3/+5 |
| | |||||
* | - License update | Andi Gutmans | 1999-07-14 | 1 | -5/+11 |
| | | | | | - Fix multithreaded constants startup | ||||
* | Fix assignments of reference variables | Andi Gutmans | 1999-07-10 | 1 | -0/+1 |
| | |||||
* | Step 1 in nuking the garbage collector: | Zeev Suraski | 1999-07-09 | 1 | -6/+6 |
| | | | | | | - Change the hash destructor to return int - Don't kill the bucket on hash_destroy if the destructor returns 0 | ||||
* | *** empty log message *** | Zeev Suraski | 1999-06-19 | 1 | -0/+4 |
| | |||||
* | Change __print into to_string() | Zeev Suraski | 1999-06-11 | 1 | -2/+2 |
| | |||||
* | * Make the output handling of variables much, much cooler. | Zeev Suraski | 1999-06-11 | 1 | -22/+57 |
| | | | | | | | | | | | | | | | | | | | | | | | | | Uses zend_make_printable_zval() instead of convert_to_string() now: $foo = true; print "\$foo is $foo"; will now print $foo is true (instead of "$foo is 1", earlier). Also, with objects, it automatically tries to call __print() and use it as a printing function. For example: class foo { function __print() { return "Foo Object"; } }; $foo = new foo; print $foo; will print "Foo Object". | ||||
* | * Centralized shutdown | Zeev Suraski | 1999-06-05 | 1 | -0/+16 |
| | | | | | * Change shutdown order again | ||||
* | Minor updates (mostly __declspec() stuff) | Zeev Suraski | 1999-06-04 | 1 | -13/+13 |
| | |||||
* | * Fix all hash checks that checked Bucket.arKey for NULL, when it was changed | Zeev Suraski | 1999-05-15 | 1 | -0/+2 |
| | | | | | | | | | | | to char[1], these checks should have been changed to Bucket.nKeyLength==0 * Support runtime declaration of functions. I ended up changing the grammar to catch top level functions vs. nested functions. The reason is simple - if we don't have functions properly declared at compile-time, function calls cannot be resolved at compile time, and have to be resolved at runtime, which ends up being much much slower (without the optimizer, that is). It's no biggy though, the grammar change isn't that bad. | ||||
* | Fixes: | Zeev Suraski | 1999-05-11 | 1 | -0/+2 |
| | | | | | | * Avoid closing stdin (I could have sworn I've committed that already) * unclean_shutdown patches | ||||
* | Weed out all BoundsChecker-found bugs (including a serious file descriptor leak | Zeev Suraski | 1999-05-10 | 1 | -6/+9 |
| | | | | | in the C++ scanner) | ||||
* | Almost forgot to commit those | Zeev Suraski | 1999-05-09 | 1 | -0/+6 |
| | |||||
* | - Don't support interactive mode when thread safe. | Andi Gutmans | 1999-05-02 | 1 | -1/+0 |
| | |||||
* | Various thread safety fixes and DLL updates | Zeev Suraski | 1999-04-26 | 1 | -2/+16 |
| | |||||
* | -More commits | Andi Gutmans | 1999-04-26 | 1 | -1/+1 |
| | |||||
* | Thread safety fixes | Zeev Suraski | 1999-04-24 | 1 | -2/+2 |
| | |||||
* | Thread safety patch. It works now with 'just in time' resource initialization! | Zeev Suraski | 1999-04-21 | 1 | -8/+27 |
| | |||||
* | Thread safety patch. We're still not quite there but it compiles again, and | Zeev Suraski | 1999-04-21 | 1 | -9/+61 |
| | | | | | more logic has been implemented. | ||||
* | Whatnot: | Zeev Suraski | 1999-04-18 | 1 | -1/+3 |
| | | | | | | | | * updated alloc_persist to use critical sections * changed extension shutdown to two-phase * updated dependencies * PR support (don't remember if there was any really) | ||||
* | We need to initialize the utility values after we initialize the INI file, ↵ | Zeev Suraski | 1999-04-10 | 1 | -2/+7 |
| | | | | | | | | which in turn, is after we initialize Zend. Set the utility values separately from Zend's initialization | ||||
* | *** empty log message *** | Rasmus Lerdorf | 1999-04-07 | 1 | -0/+1 |
| | |||||
* | Zend Library | Andi Gutmans | 1999-04-07 | 1 | -0/+255 |