Our Java application starts a worker thread (using Thread.start()). Shortly thereafter it calls Thread.join() on the worker thread. The worker thread does some stuff and terminates. The first thread exits the call to join() and goes on its merry way. Standard stuff:
Thread t = new WorkerThread();
t.start();
// Blah blah
t.join();
class WorkerThread extends Thread {
public void run() {
// Do some stuff
}
}
At least that's how it's supposed to work, and how it does work in any case we can reproduce. We have one customer, however, who is persistently running into trouble.
Looking at the threads using PsiProbe, they see that the worker thread is created. It runs for awhile, but after some time disappears from the list of threads. This happens at an unexpected time (based on timing of other events related to the worker thread). The main thread never gets out of the join() call.
This would seem to break join()'s contract, and implies to me some sort of JVM-level error. Has anybody witnessed behavior like this, or have any idea what could cause it?
EDIT 3-3-11:
I'm still waiting for conclusive data from the customer, but it seems likely that I didn't really know what I thought I knew: the main thread is likely not blocking in join() at all, but at a point prior to it.
Thanks to all for the ideas, anyway.