27 lines
686 B
Diff
27 lines
686 B
Diff
diff --git a/Programs/async_wait.c b/Programs/async_wait.c
|
|
index 231a07c..71b1372 100644
|
|
--- a/Programs/async_wait.c
|
|
+++ b/Programs/async_wait.c
|
|
@@ -142,13 +142,20 @@ awaitAction (long int timeout) {
|
|
|
|
int
|
|
asyncAwaitCondition (int timeout, AsyncConditionTester *testCondition, void *data) {
|
|
+ int first = 1;
|
|
TimePeriod period;
|
|
startTimePeriod(&period, timeout);
|
|
|
|
while (!(testCondition && testCondition(data))) {
|
|
long int elapsed;
|
|
|
|
- if (afterTimePeriod(&period, &elapsed)) return 0;
|
|
+ if (first) {
|
|
+ first = 0;
|
|
+ elapsed = 0;
|
|
+ } else if (afterTimePeriod(&period, &elapsed)) {
|
|
+ return 0;
|
|
+ }
|
|
+
|
|
awaitAction(timeout - elapsed);
|
|
}
|
|
|