#include "misc.h"
#include "options.h"
#include "process.h"
+#include "simgrid_features.h"
#include "statistics.h"
#include "synchro.h"
#include "timer.h"
}
// Initialize some MSG internal data.
- MSG_global_init(&argc, argv);
+ MSG_init(&argc, argv);
install_signal_handler();
// Parse global parameters
# error "Unsupported SimGrid version. Need version > 3.5"
#endif // ============================================================= //
+#if SIMGRID_VERSION < MAKE_SIMGRID_VERSION(3, 8, 0) // ==== SG < 3.8 === //
+# define MSG_init(argc, argv) MSG_global_init(argc, argv)
+#endif // ============================================================== //
#endif // !SIMGRID_FEATURES_H