Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Some functions added (not all), the code compile, but it wasn't tested
[simgrid.git] / src / msg_simix / msg_config.c
index 37c81ca..450da2f 100644 (file)
  */
 void MSG_config(const char *name, ...) 
 {
+  va_list pa;
+  /*  xbt_cfg_dump("msg_cfg_set","",_msg_cfg_set);*/
+  va_start(pa,name);
+       SIMIX_config(name,pa);
+  va_end(pa);
        return;
 }