From: Arnaud Giersch Date: Tue, 18 Jan 2011 21:19:51 +0000 (+0100) Subject: Variable delay is defined, why not using it? X-Git-Tag: v0.1~188^2~30 X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/commitdiff_plain/52cf3df3d9c14e871452621545b4ba7b8259bf0c Variable delay is defined, why not using it? --- diff --git a/process.cpp b/process.cpp index d3d9226..95ba1f9 100644 --- a/process.cpp +++ b/process.cpp @@ -77,7 +77,7 @@ int process::run() if (now < next_iter_after_date){ double delay = next_iter_after_date - now; DEBUG1("sleeping for %g s", delay); - MSG_process_sleep(next_iter_after_date - now); + MSG_process_sleep(delay); } next_iter_after_date = MSG_get_clock() + opt::min_iter_duration; }