]> AND Public Git Repository - simgrid.git/blobdiff - doc/doxygen/FAQ.doc
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename simix::kernelImmediate into simix::simcall
[simgrid.git] / doc / doxygen / FAQ.doc
index cce950bad5cedfc34cc6e7544c0c4ce14552715d..15a35ec156537daa68ef74151f7a3684e4c9a01f 100644 (file)
@@ -266,8 +266,8 @@ create 3 SD_tasks: t1, t2 and c and add dependencies in the following
 way:
 
 \code
-SD_task_dependency_add(NULL, NULL, t1, c);
-SD_task_dependency_add(NULL, NULL, c, t2);
+SD_task_dependency_add(t1, c);
+SD_task_dependency_add(c, t2);
 \endcode
 
 This way task t2 cannot start before the termination of communication c