History log of /php-src/Zend/zend_alloc.h (Results 101 – 125 of 170)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6
# e6fd66fa 12-Oct-2006 Dmitry Stogov

Make zend_memory_peak_usage() to be avalable even without --enable-memory-limit

Revision tags: php-5.2.0RC5
# ff3dfa94 05-Oct-2006 Dmitry Stogov

Allow future extensibility without binary compatibility break

Revision tags: php-5.2.0RC4
# 27c327b9 14-Sep-2006 Dmitry Stogov

Added is_zend_mm() to allow runtime check for zend memory manager

Revision tags: php-5.2.0RC3, php-5.1.6, php-5.2.0RC2, php-5.1.5, php-4.4.4, php-4.4.4RC1, php-5.1.5RC1, php-4.4.3
# 356facf4 25-Jul-2006 Dmitry Stogov

Changed memory_get_usage() and memory_get_peak_usage(). Optional boolean argument allows get memory size allocated by emalloc() (by default) or real size of memory allocated from system.

Revision tags: php-5.2.0RC1
# 29ed52ff 18-Jul-2006 Dmitry Stogov

New memory manager

Revision tags: php-4.4.3RC2, BEFORE_NEW_OUTPUT_API, php-4.4.3RC1, php-5.1.4, RELEASE_1_0_3, php-5.1.3, php-5.1.2, RELEASE_1_3, php-5.1.3RC3, php-5.1.3RC2, php-5.1.3RC1, RELEASE_1_2, RELEASE_0_9_4, RELEASE_1_0_4, php-4.4.2, php-5.1.2RC2, php-4.4.2RC2
# 61e93ccf 04-Jan-2006 Andi Gutmans

- Update copyright notices to 2006

Revision tags: php-5.1.2RC1
# dfcc155c 16-Dec-2005 Antony Dovgal

fix compile warning with Apache2 and Zend VM disabled
(someone forgot to do MFH)

Revision tags: RELEASE_1_1_1, RELEASE_1_1, RELEASE_1_0, RELEASE_2_0_2, php-5.1.1, php-5.1.0, php-4.4.2RC1, RELEASE_0_9_3, php-5.1.0RC6, php-5.1.0RC5, RELEASE_2_0_1, RELEASE_1_0RC2, php-4.4.1, php-5.1.0RC4, RELEASE_0_9_2, RELEASE_0_9_1, php-5.1.0RC3, php-5.1.0RC2, php-4.4.1RC1, RELEASE_0_9_0, RELEASE_1_0RC1, PRE_NEW_OCI8_EXTENSION, php-5.1.0RC2_PRE, php-5.0.5, php-5.0.5RC2, php-5.0.5RC1, php-5.1.0RC1, BEFORE_UNICODE_MERGE, RELEASE_2_0_0
# 916815b7 03-Aug-2005 foobar

Bump up the year

Revision tags: RELEASE_0_9, php-5.1.0b3, php-4.4.0, php-4.4.0RC2, php-5.1.0b2, php-4.4.0RC1, php-5.1.0b1, php-5.0.1b1
# 7a3dbcd1 07-Jun-2005 Derick Rethans

- Added the --disable-zend-memory-manager switch to disable the Zend memory
manager.
#- I discussed this with Dmitry today - we found it useful.

# 355eefe5 07-Apr-2005 foobar

- Nuke the code duplication

# 9356d7fc 07-Apr-2005 foobar

Fix build when USE_ZEND_ALLOC is 0

# 779f5c5c 07-Apr-2005 Zeev Suraski

Fix strdup() bug when USE_ZEND_ALLOC is disabled

Revision tags: RELEASE_0_3, php-5.0.4, php-4.3.11, php-5.0.4RC2, php-4.3.11RC2, php-5.0.4RC1, php-4.3.11RC1, RELEASE_0_2_4, RELEASE_0_2_3, RELEASE_0_2_2, RELEASE_0_2_1, RELEASE_0_2, php-5.0.3, php-4.3.10, SQLITE_4_3_20041227, php-5.0.3RC2, php-4.3.10RC2, php-5.0.3RC1, php-4.3.10RC1, PRE_NEW_VM_GEN_PATCH, php-5.0.2, php-4.3.9, php-5.0.2RC1, php-4.3.9RC3, PRE_ZEND_VM_DISPATCH_PATCH, php-4.3.9RC2, php-5.0.1, php-5.0.1RC2, php-4.3.9RC1
# 48949785 11-Aug-2004 Derick Rethans

- Added missing defines.
#- I did say the patch was for 4.3 ;-)

Revision tags: php-5.0.1RC1
# f3d6620f 07-Aug-2004 Andi Gutmans

- Commit Derick's patch for allowing Zend to use regular libc memory
- allocation functions. Mainly useful in conjunction with tools such as
- valgrind which enables us to find bugs we might

- Commit Derick's patch for allowing Zend to use regular libc memory
- allocation functions. Mainly useful in conjunction with tools such as
- valgrind which enables us to find bugs we might not find with the
- current memory managers boundary protection.

show more ...

# 138ef9a4 30-Jul-2004 Andi Gutmans

- Improve performance by inlining zend_ptr_stack_n_push(). var_args can
usually not be inlined by compilers.

# 182e93ab 20-Jul-2004 Moriyoshi Koizumi

- Add safe_pemalloc()

Revision tags: RELEASE_0_1
# 56f8195f 19-Jul-2004 Andi Gutmans

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have

- Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()
used to return "" and not bool(false). It's not worth keeping it because
STR_FREE() and zval_dtor() always have to check for it and it slows down
the general case. In addition, it seems that empty_string has been abused
quite a lot, and was used not only for setting zval's but generally in
PHP code instead of "", which wasn't the intention. Last but not least,
nuking empty_string should improve stability as I doubt every place
correctly checked if they are not mistakenly erealloc()'ing it or
calling efree() on it.
NOTE: Some code is probably broken. Each extension maintainer should
check and see that my changes are OK. Also, I haven't had time to touch
PECL yet. Will try and do it tomorrow.

show more ...

# eb2e53be 15-Jul-2004 Andi Gutmans

- Improve performance of zend_alloc by stopping the size from being a bit
- field.

Revision tags: php-5.0.0RC4, php-5.0.0, php-4.3.8, php-5.0.0RC3, php-5.0.0RC3RC2, php-4.3.7, php-5.0.0RC3RC1, php-4.3.7RC1
# 02884a08 25-May-2004 Andi Gutmans

- More fixes

# 6704ab4b 25-May-2004 Andi Gutmans

- Make fix compile.

# db90fc4c 25-May-2004 Andi Gutmans

- Fix memory leak in mem cache in conjunction with Zend MM. How come no one
- noticed this? :)

Revision tags: RELEASE_0_1_1, php-5.0.0RC2, php-5.0.0RC2RC2, php-4.3.6, php-5.0.0RC2RC1, php-4.3.6RC3, php-4.3.6RC2, php-4.3.6RC1, php-4.3.5, php-4.3.5RC4, php-5.0.0RC1, php-5.0.0RC1RC2, php-5.0.0RC1RC1, RELEASE_0_2_0, php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# ccfc46b0 08-Jan-2004 foobar

- Happy new year and PHP 5 for rest of the files too..
# Should the LICENSE and Zend/LICENSE dates be updated too?

Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1, php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1, php-4.3.4RC2, RELEASE_1_3b3, BEFORE_HANDLERS_RESHUFFLE, RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 169d43e5 28-Aug-2003 Sascha Schumann

cleanup & centralize ZEND_GCC_VERSION and ZEND_ATTRIBUTE_MALLOC so that
they can be used by downstream applications

# f065aba3 28-Aug-2003 Sascha Schumann

Enable attribute((malloc)) for GCC 2.96

# 6d7e56a0 28-Aug-2003 Sascha Schumann

GCC 2 does not know about malloc yet.

1234567