Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mutualExclusion -> app/centralizedmutex
[simgrid.git] / examples / java / app / centralizedmutex / Main.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 app.centralizedmutex;
8
9 import org.simgrid.msg.Msg;
10 import org.simgrid.msg.NativeException;
11
12 public class Main {
13   public static void main(String[] args) throws NativeException {
14     Msg.init(args);
15
16     String platf  = args.length > 1 ? args[0] : "../platforms/small_platform.xml";
17     String deploy =  args.length > 1 ? args[1] : "./centralizedmutex.xml";
18
19     /* construct the platform and deploy the application */
20     Msg.createEnvironment(platf);
21     Msg.deployApplication(deploy);
22
23     /*  execute the simulation. */
24     Msg.run();
25   }
26 }