I have a call to System.exit(1) in my multi-threaded program. However from time to time instead of return code 1, the program exits with return code 0. I don't have any other calls System.exit() and I'm positive that the program doesn't exit cleanly. What can be the cause, and how can I avoid it?
Note that the error is intermittent and I cannot reproduce the same behavior in single threaded programs.
System.exit(1). I do extensive logging to verify the execution path. – Alexandru Jan 7 '11 at 13:06System.exit(). From what I checked there is only one call toSystem.exit(1)in the framework, however your suggestion seems plausible. – Alexandru Jan 7 '11 at 13:11