Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Delete the dependencies with stdio in simdag.h. Correction and add of comments.
[simgrid.git] / src / simdag / sd_task.c
index 0b0c4cb..80fa27e 100644 (file)
@@ -1338,9 +1338,9 @@ void SD_task_schedulev(SD_task_t task, int count, const SD_workstation_t*list) {
       SD_task_t after = dep->dst;
       if (after->kind == SD_TASK_COMM_E2E) {
         after->workstation_list[0] = task->workstation_list[0];
-                               //J-N : Why did you comment on these line (this comment add a bug I think)?
+        //J-N : Why did you comment on these line (this comment add a bug I think)?
         if (after->workstation_list[1] && (__SD_task_is_not_scheduled(after) ||
-                       __SD_task_is_schedulable(after))) {
+                                           __SD_task_is_schedulable(after))) {
           SD_task_do_schedule(after);
           VERB4("Auto-Schedule comm task %s between %s -> %s. It costs %.f bytes",
               SD_task_get_name(after),