Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reduce verbosity of the appveyor manual test, and fix ctest invocation
[simgrid.git] / examples / msg / masterslave / masterslave_platfgen.c
index 9d8f3cd..7334207 100644 (file)
@@ -1,7 +1,12 @@
+/* Copyright (c) 2012-2015. 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. */
 
 #include "simgrid/platf_generator.h"
 #include "xbt.h"
-#include "msg/msg.h"
+#include "simgrid/msg.h"
 
 #include "xbt/log.h"
 XBT_LOG_NEW_DEFAULT_CATEGORY(test_generation,
@@ -69,12 +74,12 @@ int master(int argc, char *argv[])
   task_comp_size = 2400000*argc;
   task_comm_size = 1000000;
 
-  {                             /* Process organisation */
+  {                             /* Process organization */
     slaves_count = argc;
     slaves = xbt_new0(msg_host_t, slaves_count);
 
     for (i = 0; i < argc; i++) {
-      slaves[i] = MSG_get_host_by_name(argv[i]);
+      slaves[i] = MSG_host_by_name(argv[i]);
       if (slaves[i] == NULL) {
         XBT_INFO("Unknown host %s. Stopping Now! ", argv[i]);
         abort();
@@ -169,7 +174,7 @@ int main(int argc, char **argv) {
   int connected;
   int max_tries = 10;
 
-  //MSG initialisation
+  //MSG initialization
   MSG_init(&argc, argv);
 
   //Set up the seed for the platform generation