SimGrid  3.18
Versatile Simulation of Distributed Systems
examples/s4u/actor-create/s4u-actor-create_d.xml
1 <?xml version='1.0'?>
2 <!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid/simgrid.dtd">
3 <platform version="4.1">
4 
5  <!-- This a weird deployment file: we only start one actor from here and the others from the main().
6  -
7  - This is only for the example, but don't do that at home.
8  - Instead, you want to start all your actors from the deployment file.
9  -->
10 
11  <actor host="Fafard" function="receiver">
12  <!-- Pass the right mailbox name to the actor -->
13  <argument value="mb42" />
14  </actor>
15 </platform>