TABLE OF CONTENTS


::pwtk::pid_wait

SYNOPSIS

proc ::pwtk::pid_wait {PID} {

PURPOSE

Wait for the PID process to finish. This command blocks until the PID process is completed.

ARGUMENT

SOURCE

    variable time_interval_ms

    while { [pid_exists $PID] } {       
        after $time_interval_ms
    }
}