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
As an idea for fallback: on unsupported platforms spawn a new thread and join the current thread to the newly created. This is portable but works only with std though.
The text was updated successfully, but these errors were encountered:
An additional concern is that we would be limited to executing callbacks that are Send only, which would introduce an unnecessary constraint on platforms which do support switching.
We currently support a fair number of targets and it is not unfeasible to add more, so I think this issue is and will become less relevant over time.
As an idea for fallback: on unsupported platforms spawn a new thread and join the current thread to the newly created. This is portable but works only with
std
though.The text was updated successfully, but these errors were encountered: