mirror of
https://github.com/php/php-src.git
synced 2026-04-23 07:58:20 +02:00
149588280b
Fixes my earlier PR #4617 If I remember correctly, The F0 macro is used for return values that are guaranteed to not be reference counted. The F1 macro is used for return values that may have up to 1 reference (i.e. MAY_BE_RC1). I didn't notice that time_nanosleep needed to be F1 since it could return an array, and that array is reference counted.