X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f9f61beda52cb096a19f11d339b6a1a25825f17b..4ed8be9e9f7601bd85bbea22ee0cf80ed2266c41:/include/xbt/config.h diff --git a/include/xbt/config.h b/include/xbt/config.h index eb3de3348d..43bf825ece 100644 --- a/include/xbt/config.h +++ b/include/xbt/config.h @@ -109,6 +109,16 @@ XBT_PUBLIC(void) xbt_cfg_set_string(xbt_cfg_t cfg, const char *name, XBT_PUBLIC(void) xbt_cfg_set_peer(xbt_cfg_t cfg, const char *name, const char *peer, int port); +/* + Set the default value of the cell \a name in \a cfg with the provided value. + If it was already set to something (possibly from the command line), do nothing. + */ +XBT_PUBLIC(void) xbt_cfg_setdefault_int(xbt_cfg_t cfg, const char *name, int val); +XBT_PUBLIC(void) xbt_cfg_setdefault_double(xbt_cfg_t cfg, const char *name, double val); +XBT_PUBLIC(void) xbt_cfg_setdefault_string(xbt_cfg_t cfg, const char *name, const char* val); +XBT_PUBLIC(void) xbt_cfg_setdefault_peer(xbt_cfg_t cfg, const char *name, const char* host, int port); + + /* Remove the provided value from the cell @name in @cfg. */