()
| 264 | public static native void yield(); |
| 265 | |
| 266 | public synchronized void join() throws InterruptedException { |
| 267 | while (getState() != State.TERMINATED) { |
| 268 | wait(); |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | public synchronized void join(long milliseconds) throws InterruptedException |
| 273 | { |
no test coverage detected