Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Removed unused zend_mm.* | Dmitry Stogov | 2006-12-05 | 1 | -476/+0 |
| | |||||
* | New memory manager | Dmitry Stogov | 2006-07-18 | 1 | -1/+2 |
| | |||||
* | WS | Dmitry Stogov | 2006-02-21 | 1 | -9/+9 |
| | |||||
* | - Update copyright notices to 2006 | Andi Gutmans | 2006-01-04 | 1 | -1/+1 |
| | |||||
* | Bump up the year | foobar | 2005-08-03 | 1 | -1/+1 |
| | |||||
* | Fix compile warning (bug #32047) | foobar | 2005-03-06 | 1 | -2/+2 |
| | |||||
* | Handle out of memory/bad size situation gracefully, without getting into loop | Stanislav Malyshev | 2004-03-04 | 1 | -2/+8 |
| | |||||
* | - Happy new year and PHP 5 for rest of the files too.. | foobar | 2004-01-08 | 1 | -1/+1 |
| | | | | | # Should the LICENSE and Zend/LICENSE dates be updated too? | ||||
* | Check if realloc() succeeds or not. (Noticed by Andrey) | Ilia Alshanetsky | 2004-01-06 | 1 | -0/+3 |
| | |||||
* | - Argh, the suffering copy&paste can cause | Andi Gutmans | 2003-10-14 | 1 | -1/+1 |
| | |||||
* | - Fix the fix by making sure the new block is in the right free list. | Andi Gutmans | 2003-10-14 | 1 | -0/+2 |
| | |||||
* | - Support merging free block which was created by reallocing to smaller | Andi Gutmans | 2003-10-14 | 1 | -3/+13 |
| | | | | | | - size. This should fix some performance issues. This code is still not - thoroughly tested. | ||||
* | - Add heap to memory manager. This should improve performance. | Andi Gutmans | 2003-07-04 | 1 | -24/+107 |
| | | | | | | | - Enabling it by default so that it gets tested. We should decide before beta 2 if we want to revert back to malloc or not. - Thanks to Sebastian for benchmarking it | ||||
* | - ZE coding style requires if ( instead of if( | Andi Gutmans | 2003-06-30 | 1 | -1/+1 |
| | |||||
* | updating license information in the headers. | James Cox | 2003-06-10 | 1 | -1/+1 |
| | |||||
* | - Added some missing CVS $Id$ tags, headers and footers. | foobar | 2003-02-01 | 1 | -0/+10 |
| | |||||
* | Bump year. | Sebastian Bergmann | 2002-12-31 | 1 | -1/+1 |
| | |||||
* | - Fix a bug which I just introduced. | Andi Gutmans | 2002-12-09 | 1 | -0/+1 |
| | |||||
* | - Fix typo | Andi Gutmans | 2002-12-09 | 1 | -1/+1 |
| | |||||
* | - Improvements | Andi Gutmans | 2002-12-09 | 1 | -5/+14 |
| | |||||
* | - First attempt to improve memory manager during realloc()'s | Andi Gutmans | 2002-12-09 | 1 | -5/+36 |
| | |||||
* | make win32 debug output more verbose | Harald Radi | 2002-08-07 | 1 | -2/+0 |
| | |||||
* | - Fix some compile problems with the new configure checks. | Andi Gutmans | 2002-07-24 | 1 | -17/+4 |
| | |||||
* | move testing for the alignment values into configure. | James Cox | 2002-07-24 | 1 | -0/+2 |
| | |||||
* | - Hardcode alignment to 8. We might need a configure check for this. | Andi Gutmans | 2002-06-24 | 1 | -0/+4 |
| | |||||
* | - Improve memory manager to allocate small blocks quickly. | Andi Gutmans | 2002-06-24 | 1 | -12/+49 |
| | |||||
* | - Fix small bug | Andi Gutmans | 2002-06-23 | 1 | -0/+2 |
| | |||||
* | - Almost completely implement realloc(). It now resizes in place when | Andi Gutmans | 2002-06-23 | 1 | -29/+53 |
| | | | | | - possible. | ||||
* | - Fix crash when zend_mm_shutdown is called more than once. | Andi Gutmans | 2002-06-22 | 1 | -0/+3 |
| | |||||
* | - Make sure MAX is defined | Andi Gutmans | 2002-06-19 | 1 | -2/+5 |
| | |||||
* | - Improve speed of alignment calculation | Andi Gutmans | 2002-06-17 | 1 | -2/+3 |
| | |||||
* | - Fix a bug and add code which frees actual allocated segments at the end | Andi Gutmans | 2002-06-17 | 1 | -6/+22 |
| | | | | | | - of execution (this still doesn't work because some blocks remain - referenced after the memory manager is killed. | ||||
* | - Save space per-allocated block. | Andi Gutmans | 2002-06-17 | 1 | -18/+17 |
| | |||||
* | - Remove debug code which doesn't work anymore and add headers. | Andi Gutmans | 2002-06-16 | 1 | -95/+19 |
| | |||||
* | - Commit an initial version of a home made memory manager. | Andi Gutmans | 2002-06-16 | 1 | -0/+320 |
- It's just for seeing if this would be an advantage to PHP in MT - environments. If this is to become production material there is still - a long way to go. |