Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use better data structures (incomplete) | Dmitry Stogov | 2014-02-10 | 1 | -46/+187 | |
| | ||||||
* | Bump year | Xinchen Hui | 2014-01-03 | 1 | -1/+1 | |
| | ||||||
* | Fix intl build | Nikita Popov | 2013-09-14 | 1 | -1/+1 | |
| | ||||||
* | Provide more macros for handling of interned strings | Nikita Popov | 2013-09-13 | 1 | -0/+27 | |
| | | | | | | | | | | | | | * str_erealloc behaves like erealloc for normal strings, but will use emalloc+memcpy for interned strings. * str_estrndup behaves like estrndup for normal strings, but will not copy interned strings. * str_strndup behaves like zend_strndup for normal strings, but will not copy interned strings. * str_efree_rel behaves like efree_rel for normal strings, but will not free interned strings. * str_hash will return INTERNED_HASH for interned strings and compute it using zend_hash_func for normal strings. | |||||
* | Happy New Year | Xinchen Hui | 2013-01-01 | 1 | -1/+1 | |
| | ||||||
* | Fix bug #62651: source level BC break | Gustavo André dos Santos Lopes | 2012-07-27 | 1 | -0/+2 | |
| | | | | | Break for C++ extensions that don't wrap the includes of PHP libraries in extern "C" {. | |||||
* | - Year++ | Felipe Pena | 2012-01-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed ZE specific compile warnings (Bug #55629) | Dmitry Stogov | 2011-09-13 | 1 | -2/+2 | |
| | ||||||
* | Reverted Gopal's patch that allowed plugable interned string check | Dmitry Stogov | 2011-07-28 | 1 | -2/+1 | |
| | | | | | | 1. It introduced a significant slowdown 2. It didn't fix the real problem in APC (I'm goint to commit the fix) | |||||
* | merge to trunk - Allow zend_is_interned_string to be pluggable | Gopal Vijayaraghavan | 2011-07-28 | 1 | -1/+2 | |
| | ||||||
* | - Year++ | Felipe Pena | 2011-01-01 | 1 | -1/+1 | |
| | ||||||
* | marked char pointer arguments as const in lots of | Hartmut Holzgraefe | 2010-10-14 | 1 | -1/+1 | |
| | | | | | | places where strings pointed to are not modified to prevent compiler warnings about discarded qualifiers ... | |||||
* | - Interned string related callbacks moved turned from compiler_globals into ↵ | Dmitry Stogov | 2010-05-25 | 1 | -0/+4 | |
| | | | | | | | real globals - Updated API version number | |||||
* | Added concept of interned strings. All strings constants known at compile ↵ | Dmitry Stogov | 2010-04-20 | 1 | -0/+67 | |
time are allocated in a single copy and never changed. |