Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove unused tesh files.
[simgrid.git] / examples / mutualExclusion / centralized / MutexCentral.java
1 /*
2  * $Id$
3  *
4  * Copyright 2006,2007 Martin Quinson, Malek Cherier         
5  * All rights reserved. 
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. 
9  */
10 package mutualExclusion.centralized;
11
12 import org.simgrid.msg.Msg;
13 import org.simgrid.msg.NativeException;
14
15 import org.simgrid.msg.*;
16
17 public class MutexCentral {
18
19         /* This only contains the launcher. If you do nothing more than than you can run 
20          *   java simgrid.msg.Msg
21          * which also contains such a launcher
22          */
23
24         public static void main(String[] args) throws NativeException {
25
26                 /* initialize the MSG simulation. Must be done before anything else (even logging). */
27                 Msg.init(args);
28
29                 if(args.length < 2) {
30                         Msg.info("Usage: Basic platform_file deployment_file");
31                         Msg.info("Fallback to default values");
32                         Msg.createEnvironment("../ring3.xml");
33                         Msg.deployApplication("mutex_centralized_deployment.xml");
34                 } else {
35                         /* construct the platform and deploy the application */
36                         Msg.createEnvironment(args[0]);
37                         Msg.deployApplication(args[1]);
38                 }
39                 
40                 /*  execute the simulation. */
41                 Msg.run();
42         }
43 }