summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Added ability to control memory consumption between request using ↵Dmitry Stogov2007-10-251-2/+17
| | | | ZEND_MM_COMPACT environment variable
* Added "compact" handler for Zend MM storage.Dmitry Stogov2007-09-291-13/+15
|
* Fixed bug #41713 (Persistent memory consumption on win32 since 5.2)Dmitry Stogov2007-07-251-0/+9
|
* MFHAntony Dovgal2007-05-281-6/+6
|
* WIN64 supportDmitry Stogov2007-04-161-4/+14
|
* Fixed 64-bit supportDmitry Stogov2007-04-091-12/+18
|
* Fixed bug #40883 (mysql_query() is allocating memory incorrectly). (Tony)Dmitry Stogov2007-03-231-0/+44
|
* Improved Zend Memory Manager to guarantee reasonable time for worst cases of ↵Dmitry Stogov2007-03-201-329/+600
| | | | best-fit free block searching algorithm.
* MFH: fix #40800 (cannot disable memory_limit with -1)Antony Dovgal2007-03-141-1/+1
|
* Fixed bug #40770 (Apache child exits when PHP memory limit reached)Dmitry Stogov2007-03-121-0/+3
|
* MFH: declare zend_mm_random() only when neededAntony Dovgal2007-03-061-0/+2
|
* MFH: fix heap protection on SPARC, required by GCC4Antony Dovgal2007-02-191-3/+3
| | | | | patch by Dmitry
* fix typoAntony Dovgal2007-02-161-1/+1
|
* add safe_reallocStanislav Malyshev2007-02-161-0/+52
|
* Enable canary protection in DEBUG mode only.Dmitry Stogov2007-02-011-1/+1
|
* Fixed bug #40076 (zend_alloc.c: Value of enumeration constant must be in ↵Dmitry Stogov2007-01-091-9/+7
| | | | range of signed integer)
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* Fixed possible size_t overflowDmitry Stogov2006-12-251-6/+17
|
* Make MEMORY_LIMIT and ZEND_USE_MALLOC_MM to be always enabled. They don't ↵Dmitry Stogov2006-12-201-74/+9
| | | | make any significant slowdown, but incrise maintainability a lot. Note that the setting of memory_limit wasn't changes (neither in main/main.c nor in php.ini) and it still set to 16M.
* Fixed random generation of cookies and canariesDmitry Stogov2006-12-181-24/+57
|
* MFH: __builtin_expect() exists only in GCC 3.0 and higherDmitry Stogov2006-12-181-1/+1
|
* - I prefer cookie to be the first element.Andi Gutmans2006-12-151-2/+2
|
* Added internal heap protectionDmitry Stogov2006-12-151-95/+254
| | | | | | | . safe unlinking . cookies . canary protection (debug build only)
* Fixed possible failureDmitry Stogov2006-12-081-5/+4
|
* Fixed bug #38274 (Memlimit fatal error sent to "wrong" stderr when using ↵Dmitry Stogov2006-12-041-4/+33
| | | | fastcgi)
* Bug #39438 (Fatal error: Out of memory)Dmitry Stogov2006-12-011-11/+11
|
* typoDmitry Stogov2006-12-011-1/+1
|
* Fixed bug #39702 (php crashes in the allocator on linux-m68k)Dmitry Stogov2006-12-011-0/+7
|
* Fixed bug #39640 (Segfault with "Allowed memory size exhausted")Dmitry Stogov2006-12-011-1/+1
|
* Fixed bug #39652 (Wrong negative results from memeory_get_usage())Dmitry Stogov2006-12-011-15/+29
|
* Fixed bug #39534 (Error in maths to calculate of ↵Dmitry Stogov2006-11-231-1/+11
| | | | ZEND_MM_ALIGNED_MIN_HEADER_SIZE). (wharmby at uk dot ibm dot com)
* Fixed incorrect heap corruptiuon detection codeDmitry Stogov2006-11-131-8/+9
|
* Zend Memory Manager ImprovementsDmitry Stogov2006-11-101-20/+26
| | | | | | . use HeapAlloc() instead of VirtualAlloc() . use "win32" storage manager (instead of "malloc") on Windows by default
* Make zend_memory_peak_usage() to be avalable even without --enable-memory-limitDmitry Stogov2006-10-121-2/+4
|
* Added safety checks against integer overflow.Ilia Alshanetsky2006-09-301-3/+2
|
* Added is_zend_mm() to allow runtime check for zend memory managerDmitry Stogov2006-09-141-0/+9
|
* Show name of storage layer in case of initialization fault.Dmitry Stogov2006-08-311-1/+1
|
* s/pinter/pointer/Antony Dovgal2006-08-301-1/+1
|
* Fixed bug #38265 (heap corruption)Dmitry Stogov2006-08-231-21/+41
|
* Fixed "win32" storage managerDmitry Stogov2006-08-221-12/+15
|
* Fixed crash of DEBUG version on SPARC CPU because of unaligned pointers.Dmitry Stogov2006-07-261-4/+5
|
* Changed memory_get_usage() and memory_get_peak_usage(). Optional boolean ↵Dmitry Stogov2006-07-251-22/+61
| | | | argument allows get memory size allocated by emalloc() (by default) or real size of memory allocated from system.
* Fixed memory leaks detectionDmitry Stogov2006-07-241-1/+1
|
* MFH: fix build on platforms without mremap()Antony Dovgal2006-07-181-1/+2
|
* New memory managerDmitry Stogov2006-07-181-555/+1580
|
* - Update copyright notices to 2006Andi Gutmans2006-01-041-1/+1
|
* MFH:- Include timestamp for the leaks. (to make possible matching leaks with ↵foobar2005-12-121-0/+1
| | | | access_log entries)
* MFH: Fixed bug #34156 (memory usage remains elevated after memory limit isIlia Alshanetsky2005-08-181-1/+2
| | | | | reached);
* Bump up the yearfoobar2005-08-031-1/+1
|
* - Nuke the code duplicationfoobar2005-04-071-10/+0
|