Upgrade master to Ubuntu 24.04 (GH-16704)

This commit is contained in:
Ilija Tovilo 2024-11-07 16:32:45 +01:00 committed by GitHub
parent 40997c2c62
commit fb257ee83c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 36 additions and 15 deletions

View file

@ -1182,6 +1182,7 @@ PHP_FUNCTION(time_nanosleep)
RETURN_TRUE;
} else if (errno == EINTR) {
array_init(return_value);
MSAN_UNPOISON(php_rem);
add_assoc_long_ex(return_value, "seconds", sizeof("seconds")-1, php_rem.tv_sec);
add_assoc_long_ex(return_value, "nanoseconds", sizeof("nanoseconds")-1, php_rem.tv_nsec);
return;