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
Right now cancellation uses an event (e.g., a threading.Event in the common case, or a multiprocessing.Event for the in-progress multiprocessing work). That event is synchronized, and that level of synchronization is unnecessary. All we should need here is a signal sent from the foreground to the background.
The text was updated successfully, but these errors were encountered:
Right now cancellation uses an event (e.g., a
threading.Event
in the common case, or amultiprocessing.Event
for the in-progress multiprocessing work). That event is synchronized, and that level of synchronization is unnecessary. All we should need here is a signal sent from the foreground to the background.The text was updated successfully, but these errors were encountered: