Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / examples / java / mutualExclusion / MutexCentral.java
1 /* Copyright (c) 2012-2014, 2016. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 package mutualExclusion;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.NativeException;
11
12 public class MutexCentral {
13   public static void main(String[] args) throws NativeException {
14     Msg.init(args);
15
16     if(args.length < 2) {
17       Msg.info("Usage: MutexCentral platform_file deployment_file");
18       Msg.info("Fallback to default values");
19       Msg.createEnvironment("../platform/small_platform.xml");
20       Msg.deployApplication("mutex_centralized_deployment.xml");
21     } else {
22       /* construct the platform and deploy the application */
23       Msg.createEnvironment(args[0]);
24       Msg.deployApplication(args[1]);
25     }
26
27     /*  execute the simulation. */
28     Msg.run();
29   }
30 }