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
but has not been replaced after the removal of libuv.
In the absence of such a loop, the callback_handler thread stops after a single run through the different update piles and stops listening to further changes thereafter.
I managed to fixed the issue by enclosing the part after the mutex request into a simple while (true) {... loop, but I'm not 100% certain that this would be the appropriate way of doing things since I actually have no experience whatsoever with C++ 😄 If this approach seems alright though, I'd be happy to submit this very simple PR.
The text was updated successfully, but these errors were encountered:
node-abletonlink/src/napi-abletonlink.hpp
Lines 69 to 72 in bc8c344
The
callback_handler
function should be run as an infinite loop. This was previously handled by libuv:node-abletonlink/src/node-abletonlink.hpp
Line 95 in 8b5122f
In the absence of such a loop, the callback_handler thread stops after a single run through the different update piles and stops listening to further changes thereafter.
I managed to fixed the issue by enclosing the part after the mutex request into a simple
while (true) {...
loop, but I'm not 100% certain that this would be the appropriate way of doing things since I actually have no experience whatsoever with C++ 😄 If this approach seems alright though, I'd be happy to submit this very simple PR.The text was updated successfully, but these errors were encountered: