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
The thread::park function is used to block the main thread indefinitely for play on repeat. However, per the thread::park documentation, this function may not actually block indefinitely...
A call to park does not guarantee that the thread will remain parked forever, and callers should be prepared for this possibility.
The text was updated successfully, but these errors were encountered:
The
thread::park
function is used to block the main thread indefinitely for play on repeat. However, per thethread::park
documentation, this function may not actually block indefinitely...The text was updated successfully, but these errors were encountered: