215216217218219220221222223224225
TaskCancelThread tct = new TaskCancelThread(1, taskRunner, this); tct.start(); try { tct.join(); taskRunner.join(); } catch(InterruptedException ie) { Assert.fail("Joining threads failed"); }
256257258259260261262263264265266
TaskCancelThread tct = new TaskCancelThread(2, taskRunner, this); tct.start(); try { tct.join(); taskRunner.join(); } catch(InterruptedException ie) { Assert.fail("Joining threads failed"); }
439440441442443444445446447448449
482483484485486487488489490491492
525526527528529530531532533534535
568569570571572573574575576577578
429430431432433434435436437438439
480481482483484485486487488489490
526527528529530531532533534535536
789790791792793794795796797798799