summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-15 17:27:43 +0000
committerPierre Joye <pajoye@php.net>2010-09-15 17:27:43 +0000
commit4420a91bbdb8769cb5fedbd067122decb506beb1 (patch)
tree5dca446ed4afd88c7efc9efa9309a054af296300 /UPGRADING.INTERNALS
parentc93631a137c36e9a2c5e7a8126d635b21bd69778 (diff)
downloadphp-git-4420a91bbdb8769cb5fedbd067122decb506beb1.tar.gz
- macros--; ZEND_FAST_* are now gone
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS9
1 files changed, 8 insertions, 1 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index e039132167..4b5dac1b58 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -57,6 +57,13 @@ instead of calling readlink directly, to ensure portability.
e. Zend\zend_fast_cache.h
It should not have been used anymore since php5, but now this header has
-been removed.
+been removed. The following macros are not available anymore:
+
+ZEND_FAST_ALLOC(p, type, fc_type)
+ZEND_FAST_FREE(p, fc_type)
+ZEND_FAST_ALLOC_REL(p, type, fc_type)
+ZEND_FAST_FREE_REL(p, fc_type)
+
+Use emalloc, emalloc_rel, efree or efree_rel instead.