Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
mv surf_parse -> surfxml_parse
[simgrid.git] / tools / gras / stub_generator.c
index 28fb684..8e0cb51 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "xbt/sysdep.h"
 #include "xbt/log.h"
-#include "surf/surf_parse.h"
+#include "surf/surfxml_parse.h"
 #include "surf/surf.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(stubgen,gras,"Stub generator");
@@ -165,7 +165,7 @@ static void generate_sim(char *project)
   fprintf(OUT, "%s", "int main (int argc,char *argv[]) {\n" 
                      "\n" 
                     "  /*  Simulation setup */\n" 
-                     "  MSG_global_init_args(&argc,argv);\n" 
+                     "  MSG_global_init(&argc,argv);\n" 
                      "  if (argc != 3) {\n" 
                      "    fprintf(stderr, \"Usage: %s platform_file application_description.txt [--gras-log=...]\\n\",argv[0]);\n" 
                      "    exit(1);\n" 
@@ -173,7 +173,7 @@ static void generate_sim(char *project)
                      "\n");
    fprintf(OUT, 
           "  MSG_paje_output(\"%s.trace\");\n" 
-          "  MSG_set_channel_number(10); /* Using at most 10 channel (ports) per host. Change it here if needed */\n" 
+          "  MSG_set_channel_number(XBT_MAX_CHANNEL); /* Using at most 10 channel (ports) per host. Change it here if needed */\n" 
           "  MSG_create_environment(argv[1]);\n" 
           "\n" 
           "  /*  Application deployment */\n",
@@ -603,6 +603,6 @@ int main(int argc, char *argv[])
   generate_deployment(project_name, deployment_file);
 
   free(warning);
-  surf_finalize();
+  surf_exit();
   return 0;
 }