mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix word alignment on ILP64.
This commit is contained in:
parent
db9778dfb2
commit
b5bc88c64e
1 changed files with 1 additions and 1 deletions
|
@ -283,7 +283,7 @@ struct _zend_mm_chunk {
|
||||||
uint32_t free_pages; /* number of free pages */
|
uint32_t free_pages; /* number of free pages */
|
||||||
uint32_t free_tail; /* number of free pages at the end of chunk */
|
uint32_t free_tail; /* number of free pages at the end of chunk */
|
||||||
uint32_t num;
|
uint32_t num;
|
||||||
char reserve[64 - (sizeof(void*) * 3 + sizeof(int) * 3)];
|
char reserve[64 - (sizeof(void*) * 3 + sizeof(uint32_t) * 3)];
|
||||||
zend_mm_heap heap_slot; /* used only in main chunk */
|
zend_mm_heap heap_slot; /* used only in main chunk */
|
||||||
zend_mm_page_map free_map; /* 512 bits or 64 bytes */
|
zend_mm_page_map free_map; /* 512 bits or 64 bytes */
|
||||||
zend_mm_page_info map[ZEND_MM_PAGES]; /* 2 KB = 512 * 4 */
|
zend_mm_page_info map[ZEND_MM_PAGES]; /* 2 KB = 512 * 4 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue