Home | History | Annotate | Download | only in art

Lines Matching defs:other

60       Thread other = new Thread(new OtherThread(), "TARGET THREAD");
62 other.start();
66 Suspension.suspend(other);
68 waitForSuspension(other);
74 System.out.println("Looks like other thread did something while suspended!");
78 Suspension.suspend(other);
84 Suspension.resume(other);
93 // Stop the other thread.
96 other.join(1000);
98 if (other.isAlive()) {
99 System.out.println("other thread didn't terminate in a reasonable time!");