Tagged Questions
2
votes
4answers
301 views
Threading in Java
I am trying to have my main thread spawn off a new thread and, after some time, raise the interrupt flag. When it does so, the spawned thread should see that flag and terminate itself.
The main ...