Skip to content

Commit b363a60

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3:
2 parents 3ed5eee + 093aee6 commit b363a60

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Zend/zend_max_execution_timer.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,13 @@
2727
# include <pthread_np.h>
2828
# endif
2929

30-
#include "zend.h"
31-
#include "zend_globals.h"
32-
#include "zend_portability.h"
33-
3430
#if __has_feature(memory_sanitizer)
3531
# include <sanitizer/msan_interface.h>
3632
#endif
3733

34+
#include "zend.h"
35+
#include "zend_globals.h"
36+
3837
// Musl Libc defines this macro, glibc does not
3938
// According to "man 2 timer_create" this field should always be available, but it's not: https://sourceware.org/bugzilla/show_bug.cgi?id=27417
4039
# ifndef sigev_notify_thread_id
@@ -68,8 +67,8 @@ ZEND_API void zend_max_execution_timer_init(void) /* {{{ */
6867

6968
#if __has_feature(memory_sanitizer)
7069
/* MSan does not intercept timer_create() */
71-
__msan_unpoison(&EG(max_execution_timer_timer),
72-
sizeof(EG(max_execution_timer_timer)));
70+
__msan_unpoison(&EG(max_execution_timer_timer),
71+
sizeof(EG(max_execution_timer_timer)));
7372
#endif
7473

7574
// Measure wall time instead of CPU time as originally planned now that it is possible https://github.com/php/php-src/pull/6504#issuecomment-1370303727

0 commit comments

Comments
 (0)