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
Truffle currently has Java semantics where if the main thread exits, other threads just continue to run. We need the Ruby semantics where the main thread exiting will kill other threads. See the implementation of Thread#kill (in the ThreadNodes class) for a way to do this without any overhead.
The text was updated successfully, but these errors were encountered:
chrisseaton
changed the title
Kill all other threads when the main thread exists
Truffle: Kill all other threads when the main thread exists
Nov 9, 2014
donv
changed the title
Truffle: Kill all other threads when the main thread exists
Truffle: Kill all other threads when the main thread exits
Apr 14, 2015
Truffle currently has Java semantics where if the main thread exits, other threads just continue to run. We need the Ruby semantics where the main thread exiting will kill other threads. See the implementation of
Thread#kill
(in theThreadNodes
class) for a way to do this without any overhead.The text was updated successfully, but these errors were encountered: