mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
Signed-off-by: Andrew Vagin <avagin@virtuozzo.com> Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
16 lines
306 B
Bash
16 lines
306 B
Bash
# Wait while tasks are dying, otherwise PIDs would be busy.
|
|
|
|
function wait_tasks()
|
|
{
|
|
local dump=$1
|
|
local pid
|
|
|
|
for i in $dump/core-*.img; do
|
|
pid=`expr "$i" : '.*/core-\([0-9]*\).img'`
|
|
while :; do
|
|
kill -0 $pid > /dev/null 2>&1 || break;
|
|
echo Waiting the process $pid
|
|
sleep 0.1
|
|
done
|
|
done
|
|
}
|