Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Do not use NULL as a name since AIX and linux do not display them the same way (AIX...
[simgrid.git] / teshsuite / simdag / basic1.c
index 0652547..48a5ef1 100644 (file)
@@ -10,7 +10,7 @@ int main(int argc, char **argv) {
     SD_create_environment(argv[1]);
 
     /* creation of the tasks and their dependencies */
-    SD_task_t taskInit = SD_task_create(NULL,NULL,1.0);
+    SD_task_t taskInit = SD_task_create("Init",NULL,1.0);
     SD_task_t taskA = SD_task_create("Task Comm A", NULL, 1.0);
     SD_task_t taskB = SD_task_create("Task Comm B", NULL, 1.0);