Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Restore C interface (needed by StarPU).
[simgrid.git] / src / simix / smx_environment.cpp
index 3332c1d..0eb0f4f 100644 (file)
@@ -1,13 +1,10 @@
-/* Copyright (c) 2007-2017. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2007-2018. 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 "smx_private.hpp"
-#include "xbt/config.h"
-#include "xbt/log.h"
-#include "xbt/sysdep.h"
+#include "src/include/surf/surf.hpp"
 #include "xbt/xbt_os_time.h"
 #include <xbt/ex.hpp>
 
@@ -30,7 +27,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_environment, simix, "Logging specific to S
  *     \include small_platform.xml
  *
  */
-void SIMIX_create_environment(const char *file)
+void SIMIX_create_environment(std::string file)
 {
   double start = 0;
   double end = 0;
@@ -40,13 +37,18 @@ void SIMIX_create_environment(const char *file)
     parse_platform_file(file);
   }
   catch (xbt_ex& e) {
-    xbt_die("Error while loading %s: %s", file, e.what());
+    xbt_die("Error while loading %s: %s", file.c_str(), e.what());
   }
   if(XBT_LOG_ISENABLED(simix_environment, xbt_log_priority_debug))
     end = xbt_os_time();
   XBT_DEBUG("PARSE TIME: %g", (end - start));
 }
 
+void SIMIX_create_environment(const char* file)
+{
+  SIMIX_create_environment(std::string(file));
+}
+
 void SIMIX_post_create_environment()
 {
   surf_presolve();