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
I'm not familiar with the library, but while hacking on mediasoup the question arose in versatica/mediasoup#523 as to whether "SCTP iterator" calls any of the callbacks from following functions?:
usrsctp_init_nothreads
usrsctp_socket
If the answer is "yes", then my hacking would be blocked by #472.
The use case is that it would be trivial to get mediasoup's worker, that uses usrsctp, to run in a thread if it could use thread-local storage instead of resorting to something more invasive (it currently uses global state for some of its internals). But if callbacks to mentioned functions can be called from other thread then that clearly wouldn't work.
UPD: After further research seems to be a subset of #439
The text was updated successfully, but these errors were encountered:
I'm not familiar with the library, but while hacking on mediasoup the question arose in versatica/mediasoup#523 as to whether "SCTP iterator" calls any of the callbacks from following functions?:
usrsctp_init_nothreads
usrsctp_socket
If the answer is "yes", then my hacking would be blocked by #472.
The use case is that it would be trivial to get mediasoup's worker, that uses usrsctp, to run in a thread if it could use thread-local storage instead of resorting to something more invasive (it currently uses global state for some of its internals). But if callbacks to mentioned functions can be called from other thread then that clearly wouldn't work.
UPD: After further research seems to be a subset of #439
The text was updated successfully, but these errors were encountered: