Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enforce "Rule-of-Three/Five".
[simgrid.git] / examples / s4u / actor-create / s4u-actor-create_d.xml
index 11e719b..753a9c4 100644 (file)
@@ -1,5 +1,5 @@
 <?xml version='1.0'?>
-<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
+<!DOCTYPE platform SYSTEM "https://simgrid.org/simgrid.dtd">
 <platform version="4.1">
 
   <!-- This a weird deployment file: we only start one actor from here and the others from the main().
@@ -8,8 +8,12 @@
     -  Instead, you want to start all your actors from the deployment file.
     -->
    
-  <actor host="Fafard" function="receiver">
-    <!-- Pass the right mailbox name to the actor -->
-    <argument value="mb42" />
+  <actor host="Fafard" function="sender">
+    <argument value="PopPop!"/> <!-- msg as argv[1] -->
+    <argument value="other mb"/> <!-- mbox as argv[2] -->
+  </actor>
+  <actor host="Ginette" function="forwarder">
+    <argument value="other mb"/>
+    <argument value="mb42"/>
   </actor>
 </platform>