Suppose that we have two references: one to the current thread and one to another thread.
Thread currentThread = Thread.currentThread();
Thread anotherThread = new Thread(...);
anotherThread.start();
Which invocations cause the currentThread to jump to the state TIMED_WAITING?