]> AND Public Git Repository - simgrid.git/blobdiff - examples/msg/actions/actions.c
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
stupid old gcc. That's initialized.
[simgrid.git] / examples / msg / actions / actions.c
index edb903788e89fc0f7e369817d3bbcb192c667e04..af2465127231bcc493c83d3fc62862ffd8cb5ff9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009-2013. The SimGrid Team.
+/* Copyright (c) 2009-2014. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -479,6 +479,9 @@ int main(int argc, char *argv[])
 
   /* Check the given arguments */
   MSG_init(&argc, argv);
+  /* Explicit initialization of the action module is required now*/
+  MSG_action_init();
+
   if (argc < 3) {
     printf("Usage: %s platform_file deployment_file [action_files]\n", argv[0]);
     printf
@@ -522,6 +525,9 @@ int main(int argc, char *argv[])
 
   XBT_INFO("Simulation time %g", MSG_get_clock());
 
+  /* Explicit finalization of the action module is required now*/
+  MSG_action_exit();
+
   if (res == MSG_OK)
     return 0;
   else