private void ensureStarted()

in src/main/java/org/apache/commons/exec/ExecuteWatchdog.java [211:219]


    private void ensureStarted() {
        while (!processStarted && caught == null) {
            try {
                wait();
            } catch (final InterruptedException e) {
                throw new IllegalStateException(e.getMessage(), e);
            }
        }
    }