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
Some OSes have specific requirements as to to thread running the event loops :
on OSX, the event loop must be run from the main thread
on Windows, each thread that create windows must have an event loop
In order to uniformize these behaviors, we should ensure the event loop is always run from the main thread and that windows are always created from this thread. This probably requires some message passing facilities between the main thread and secondary threads.
The text was updated successfully, but these errors were encountered:
Some OSes have specific requirements as to to thread running the event loops :
In order to uniformize these behaviors, we should ensure the event loop is always run from the main thread and that windows are always created from this thread. This probably requires some message passing facilities between the main thread and secondary threads.
The text was updated successfully, but these errors were encountered: