Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New XBT module: file
[simgrid.git] / examples / lua / state_cloner / duplicated_globals.lua
index c0e1518..f4df0ae 100644 (file)
@@ -1,3 +1,9 @@
+-- Copyright (c) 2011, 2014. The SimGrid Team.
+-- All rights reserved.
+
+-- This program is free software; you can redistribute it and/or modify it
+-- under the terms of the license (GNU LGPL) which comes with this package.
+
 -- This code creates 3 simgrid processes and verifies that the global values
 -- in each Lua world are correctly cloned from maestro and become different
 
@@ -7,25 +13,25 @@ global_string = "A global string set by maestro"
 
 -- Assigns to the global string the first argument and prints it
 function set_global_string(...)
-  
+
   global_string = arg[1]
   simgrid.info("Changing the global string")
   print_global()
 end
 
--- Replaces the function please_don't_change_me() by set_global_string()
+-- Replaces the function please_dont_change_me() by set_global_string()
 -- and calls it
 function replace(...)
 
-  simgrid.info("Overwriting function please_don't_replace_me()")
-  please_don't_replace_me = set_global_string
-  please_don't_replace_me(...)
+  simgrid.info("Overwriting function please_dont_replace_me()")
+  please_dont_replace_me = set_global_string
+  please_dont_replace_me(...)
 end
 
 -- Shows a hello message and prints the global string
-function please_don't_replace_me(...)
+function please_dont_replace_me(...)
 
-  simgrid.info("Hello from please_don't_replace_me(). I'm lucky, I still exist in this state.")
+  simgrid.info("Hello from please_dont_replace_me(). I'm lucky, I still exist in this state.")
   print_global()
 end
 
@@ -37,7 +43,7 @@ end
 
 print_global()
 
-simgrid.platform("../../msg/small_platform.xml")
+simgrid.platform("../../platforms/small_platform.xml")
 simgrid.application("deployment_duplicated_globals.xml")
 simgrid.run()