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
callLocal had the following flaws:
1. It could leak the worker process if the parent process was
interrupted but not killed.
Linking the worker to the parent wouldn't help.
2. If the parent was interrupted, `callLocal` would return the
control before the worker is terminated. This would make
slightly harder to synchronize with whatever task the
worker is doing.
This patch fixes both issues.
0 commit comments