diff options
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r-- | Zend/zend_alloc.h | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index 1541dffcec..bd1765f7ff 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -162,17 +162,10 @@ ZEND_API size_t zend_memory_peak_usage(int real_usage TSRMLS_DC); END_EXTERN_C() /* fast cache for zval's */ -#define ALLOC_ZVAL(z) \ - (z) = (zval *) emalloc(sizeof(zval)) - -#define FREE_ZVAL(z) \ - efree_rel(z) - -#define ALLOC_ZVAL_REL(z) \ - (z) = (zval *) emalloc_rel(sizeof(zval)) - -#define FREE_ZVAL_REL(z) \ - efree_rel(z) +//???#define ALLOC_ZVAL(z) (z) = (zval *) emalloc(sizeof(zval)) +//???#define FREE_ZVAL(z) efree_rel(z) +//???#define ALLOC_ZVAL_REL(z) (z) = (zval *) emalloc_rel(sizeof(zval)) +//???#define FREE_ZVAL_REL(z) efree_rel(z) /* fast cache for HashTables */ #define ALLOC_HASHTABLE(ht) \ |