X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7debb7bb97cba7c93b5112b6cf6ac345f1faa0a4..a2b0c903d3e7168844266bd69e316c404c1d7959:/src/msg/msg_config.c diff --git a/src/msg/msg_config.c b/src/msg/msg_config.c index 13c9d0d912..ab2a14cc3a 100644 --- a/src/msg/msg_config.c +++ b/src/msg/msg_config.c @@ -1,12 +1,12 @@ /* $Id$ */ - + /* Copyright (c) 2002-2007 Arnaud Legrand. */ /* Copyright (c) 2007 Bruno Donassolo. */ /* 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 "msg/private.h" #include "xbt/sysdep.h" #include "xbt/log.h" @@ -27,20 +27,23 @@ * Example: * MSG_config("workstation_model","KCCFLN05"); */ -void MSG_config(const char *name, ...) { - +void MSG_config(const char *name, ...) +{ + va_list pa; + if (!msg_global) { - fprintf(stderr, "ERROR: Please call MSG_init() before using MSG_config()\n"); - abort(); + fprintf(stderr, + "ERROR: Please call MSG_init() before using MSG_config()\n"); + abort(); } - - - va_list pa; - /* xbt_cfg_dump("msg_cfg_set","",_msg_cfg_set);*/ - va_start(pa,name); - - SIMIX_config(name,pa); + + + /* xbt_cfg_dump("msg_cfg_set","",_msg_cfg_set); */ + va_start(pa, name); + + SIMIX_config(name, pa); + va_end(pa); return; }