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

Fix noreturn with warning that should be an error

E_WARNING does not actually abort.
This commit is contained in:
Ilija Tovilo
2023-09-14 11:29:13 +02:00
parent 8df8550321
commit 2227fefa17

View File

@@ -710,7 +710,7 @@ static zend_always_inline void zend_mm_hugepage(void* ptr, size_t size)
struct memcntl_mha m = {.mha_cmd = MHA_MAPSIZE_VA, .mha_pagesize = ZEND_MM_CHUNK_SIZE, .mha_flags = 0};
(void)memcntl(ptr, size, MC_HAT_ADVISE, (char *)&m, 0, 0);
#elif !defined(VM_FLAGS_SUPERPAGE_SIZE_2MB) && !defined(MAP_ALIGNED_SUPER)
zend_error_noreturn(E_WARNING, "huge_pages: thp unsupported on this platform");
zend_error_noreturn(E_ERROR, "huge_pages: thp unsupported on this platform");
#endif
}