Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rewrite the actor-create example
[simgrid.git] / 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="sender">
12     <argument value="PopPop!"/> <!-- msg as argv[1] -->
13     <argument value="other mb"/> <!-- mbox as argv[2] -->
14   </actor>
15   <actor host="Ginette" function="forwarder">
16     <argument value="other mb"/>
17     <argument value="mb42"/>
18   </actor>
19 </platform>