Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Lua] Ported state_cloner code to Lua 5.3
[simgrid.git] / examples / lua / state_cloner / duplicated_globals.lua
index d4c2331..26fe0e8 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,8 +13,8 @@ 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]
+
+  global_string = select(1, ...)
   simgrid.info("Changing the global string")
   print_global()
 end
@@ -22,7 +28,7 @@ function replace(...)
   please_dont_replace_me(...)
 end
 
--- Show a hello message and prints the global string
+-- Shows a hello message and prints the global string
 function please_dont_replace_me(...)
 
   simgrid.info("Hello from please_dont_replace_me(). I'm lucky, I still exist in this state.")
@@ -32,13 +38,12 @@ end
 -- Prints the value of global_string
 function print_global()
 
-  simgrid.info("Global string is '"..global_string.."'")
+  simgrid.info("Global string is '" .. global_string .. "'")
 end
 
 print_global()
 
-simgrid.platform("../../msg/small_platform.xml")
+simgrid.platform("../../platforms/small_platform.xml")
 simgrid.application("deployment_duplicated_globals.xml")
 simgrid.run()
-simgrid.clean()