From 70b47187c338c8cde515bb3286e03b1129d209ec Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 15 Sep 2025 17:09:08 +0100 Subject: [PATCH] Disable internal function interrupt checking, for profiling --- Zend/zend_execute.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 63c6d8c8546a0..df0612bdae591 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -4100,11 +4100,7 @@ ZEND_API ZEND_COLD void ZEND_FASTCALL zend_fcall_interrupt(zend_execute_data *ca } \ } while (0) -#define ZEND_VM_FCALL_INTERRUPT_CHECK(call) do { \ - if (UNEXPECTED(zend_atomic_bool_load_ex(&EG(vm_interrupt)))) { \ - zend_fcall_interrupt(call); \ - } \ - } while (0) +#define ZEND_VM_FCALL_INTERRUPT_CHECK(call) /* * Stack Frame Layout (the whole stack frame is allocated at once)