Bugs item #591709, was opened at 2002-08-06 19:14
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=591709&group_id=44253
Category: Compiler integration
Group: Crashes
Status: Open
Resolution: None
Priority: 5
Submitted By: Charles Reis (csreis)
Assigned to: James Hsia (jhsia)
Summary: Clicking Compile then Test hangs
Initial Comment:
If the user clicks Compile All on the toolbar and then
quickly clicks the Test button, DrJava will hang. This
is because Compile runs in a SwingWorker thread, so
different threads are trying to access the compiler at
the same time (testing forces a compile). To fix this,
make sure any method which will access the compiler is
mutually exclusive (with a synchronization lock).
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=438935&aid=591709&group_id=44253
|