You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All is working well.
but since I have installed this app. Sometimes (few times a week)while using the remote the tv gets turned off(or crashes). Also while using buttons which aren’t overwritten.
Anyone familiar with this issue?
Or is there some log I can see?
The text was updated successfully, but these errors were encountered:
It's caused by multiple threads hitting the PHP code at the same time.
PHP-FFI callbacks aren't thread safe, so a hook invoked from multiple threads can bring down the process (simultaneous manipulation of the PHP internal state).
This issue is tracked by PHP here php/php-src#9214
The only workaround i can think of is wrapping the native callback in a C trampoline that maintains a lock/mutex before calling the PHP function
All is working well.
but since I have installed this app. Sometimes (few times a week)while using the remote the tv gets turned off(or crashes). Also while using buttons which aren’t overwritten.
Anyone familiar with this issue?
Or is there some log I can see?
The text was updated successfully, but these errors were encountered: