1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

Merge branch 'PHP-8.2' of https://github.com/php/php-src into PHP-8.3

This commit is contained in:
Bob Weinand
2024-03-18 17:22:23 +01:00

View File

@@ -52,7 +52,7 @@
static void *find_prefered_mmap_base(size_t requested_size)
{
size_t huge_page_size = 2 * 1024 * 1024;
uintptr_t last_free_addr = 0;
uintptr_t last_free_addr = huge_page_size;
uintptr_t last_candidate = (uintptr_t)MAP_FAILED;
uintptr_t start, end, text_start = 0;
#if defined(__linux__)