Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
C bindings of ActivitySet, along with 4 examples
[simgrid.git] / examples / c / exec-waitany / exec-waitany.c
index bfff989..2dd9d86 100644 (file)
@@ -48,7 +48,7 @@ static void worker(int argc, char* argv[])
       pos = sg_exec_wait_any(pending_execs, pending_execs_count);
 
     if (pos < 0) {
-      XBT_INFO("Do not wait any longer for an activity");
+      XBT_INFO("Do not wait any longer for an activity (timeout received)");
       pending_execs_count = 0;
     } else {
       XBT_INFO("Activity at position %zd is complete", pos);