Commit f465e905 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp Committed by Dridi Boukelmoune

Don't poll VSM_Status() while there is work to do and no interruptions.

Fixes	#2788
parent 2c9f3d15
......@@ -420,7 +420,10 @@ VUT_Main(struct VUT *vut)
AZ(c);
}
i = VSLQ_Dispatch(vut->vslq, vut_dispatch, vut);
do
i = VSLQ_Dispatch(vut->vslq, vut_dispatch, vut);
while (i == vsl_more && !vut->sighup && !vut->sigusr1);
if (i == vsl_more)
continue;
else if (i == vsl_end) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment