Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Simdag users may also want to change SimGrid configuration in the code
authorsuter <frederic.suter@cc.in2p3.fr>
Fri, 9 Aug 2013 14:58:51 +0000 (16:58 +0200)
committersuter <frederic.suter@cc.in2p3.fr>
Fri, 9 Aug 2013 14:58:51 +0000 (16:58 +0200)
too (to switch to workstation/model:default, for instance)

include/simdag/simdag.h
src/simdag/sd_global.c

index fe7e32c..6d39ab7 100644 (file)
@@ -228,6 +228,7 @@ XBT_PUBLIC(int) SD_task_dependency_exists(SD_task_t src, SD_task_t dst);
  *  @{
  */
 XBT_PUBLIC(void) SD_init(int *argc, char **argv);
+XBT_PUBLIC(void) SD_config(const char *key, const char *value);
 XBT_PUBLIC(void) SD_application_reinit(void);
 XBT_PUBLIC(void) SD_create_environment(const char *platform_file);
 XBT_PUBLIC(xbt_dynar_t) SD_simulate(double how_long);
index 896e758..98de7a6 100644 (file)
@@ -97,6 +97,19 @@ void SD_init(int *argc, char **argv)
   SD_LINK_LEVEL = xbt_lib_add_level(link_lib,__SD_link_destroy);
 }
 
+/** \brief set a configuration variable
+ *
+ * Do --help on any simgrid binary to see the list of currently existing configuration variables, and see Section @ref options.
+ *
+ * Example:
+ * SD_config("workstation/model","default");
+ */
+void SD_config(const char *key, const char *value){
+  xbt_assert(sd_global,"ERROR: Please call SD_init() before using SD_config()");
+  xbt_cfg_set_as_string(_sg_cfg_set, key, value);
+}
+
+
 /**
  * \brief Reinits the application part of the simulation (experimental feature)
  *