summaryrefslogtreecommitdiff
path: root/Zend/zend_alloc.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-25 21:26:42 +0200
committerAnatol Belski <ab@php.net>2014-08-25 21:26:42 +0200
commitb9514bb8fd27e2d841bab3eb256fcbaa613aa049 (patch)
tree9cc82a1898cad7b2e92b4fe8362b02ab5ce3161a /Zend/zend_alloc.h
parent28b7a033185478839c511551ce2344e459e7f880 (diff)
downloadphp-git-b9514bb8fd27e2d841bab3eb256fcbaa613aa049.tar.gz
master renames phase 6
Diffstat (limited to 'Zend/zend_alloc.h')
-rw-r--r--Zend/zend_alloc.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h
index 0d47d1c926..77a1004446 100644
--- a/Zend/zend_alloc.h
+++ b/Zend/zend_alloc.h
@@ -29,18 +29,18 @@
#include "zend_types.h"
#ifndef ZEND_MM_ALIGNMENT
-# define ZEND_MM_ALIGNMENT Z_I(8)
-# define ZEND_MM_ALIGNMENT_LOG2 Z_I(3)
-#elif ZEND_MM_ALIGNMENT < Z_I(4)
+# define ZEND_MM_ALIGNMENT Z_L(8)
+# define ZEND_MM_ALIGNMENT_LOG2 Z_L(3)
+#elif ZEND_MM_ALIGNMENT < Z_L(4)
# undef ZEND_MM_ALIGNMENT
# undef ZEND_MM_ALIGNMENT_LOG2
-# define ZEND_MM_ALIGNMENT Z_I(4)
-# define ZEND_MM_ALIGNMENT_LOG2 Z_I(2)
+# define ZEND_MM_ALIGNMENT Z_L(4)
+# define ZEND_MM_ALIGNMENT_LOG2 Z_L(2)
#endif
-#define ZEND_MM_ALIGNMENT_MASK ~(ZEND_MM_ALIGNMENT-Z_I(1))
+#define ZEND_MM_ALIGNMENT_MASK ~(ZEND_MM_ALIGNMENT-Z_L(1))
-#define ZEND_MM_ALIGNED_SIZE(size) (((size) + ZEND_MM_ALIGNMENT - Z_I(1)) & ZEND_MM_ALIGNMENT_MASK)
+#define ZEND_MM_ALIGNED_SIZE(size) (((size) + ZEND_MM_ALIGNMENT - Z_L(1)) & ZEND_MM_ALIGNMENT_MASK)
typedef struct _zend_leak_info {
void *addr;