make g n f x returns a new thread in group g with name n. The
thread will execute f x when started; see
Thread(...) .None if the thread has terminated
its execution; see getThreadGroup(...) .false; see
interrupted(...) .Java_exception if the thread is interruptedjoin_time t m is similar to join t, except that the current
thread will at most wait for m milliseconds; see
join(...) .Java_exception if m is invalidJava_exception if the thread is interruptedjoin_time t m n is similar to join t, except that the current
thread will at most wait for m milliseconds plus n nanoseconds; see
join(...) .Java_exception if m or n is invalidJava_exception if the thread is interruptedJava_exception if the thread has already been startedJava_exception if the priority is invalidsleep m waits for m milliseconds; see
sleep(...) .Java_exception if m is invalidJava_exception if the thread is interruptedsleep m n waits for m milliseconds plus n nanoseconds; see
sleep(...) .Java_exception if m or n is invalidJava_exception if the thread is interruptedJava_exception if the thread has already been started