X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/edde8f7fbc1b74a81551bf9eb7bac1935b999296..faf5ef59d9d0f01181e7f96f47a024a24c43bd85:/examples/lua/state_cloner/duplicated_globals.lua diff --git a/examples/lua/state_cloner/duplicated_globals.lua b/examples/lua/state_cloner/duplicated_globals.lua index 70366bb8da..f4df0aeaa3 100644 --- a/examples/lua/state_cloner/duplicated_globals.lua +++ b/examples/lua/state_cloner/duplicated_globals.lua @@ -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,7 +13,7 @@ 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() @@ -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()