ext-php-rs
ext-php-rs copied to clipboard
Zvals are not `Send` nor `Sync`
Zvals currently implement both Send and Sync, however, if the zval contains a reference counted type (strings, arrays, objects), when dropped it will attempt to decrement the reference counter, which is not atomic and therefore not defined behaviour.
Is it not atomic in ZTS?