247248249250251252253254255256257
if (status != Daemon.STATUS_PROCESSING && status != Daemon.STATUS_UNKNOWN && dt != null) { //tell this thread to stop waiting and process immediately synchronized (dt) { dt.notify(); } } if ( dt != null && dt.isAlive() == false ) {
285286287288289290291292293294295
263264265266267268269270271272273
if ( status != Daemon.STATUS_PROCESSING && status != Daemon.STATUS_UNKNOWN ) { //tell this thread to stop waiting and process immediately synchronized (dt) { dt.notify(); } } if ( dt.isAlive() == false ) {