User-level access to the Kite thread system.
exit(): Exits current thread.exit(thd): Exits the given threadthd: The thread to exit.getCurrent(): Returns the current thread.join(): Wait for given thread to terminate.new(method, args): Creates a new thread.method: The method to run in the new thread.args: The arguments to pass to the method.