X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/8bef616792e68559a8c8dd32749c847760409f5b..211acce5bb9cf1a60e14cab26b54367028474d79:/src/gras/gras.c diff --git a/src/gras/gras.c b/src/gras/gras.c index f718ca1cad..dedb373f9f 100644 --- a/src/gras/gras.c +++ b/src/gras/gras.c @@ -1,9 +1,7 @@ -/* $Id$ */ - /* gras.c -- generic functions not fitting anywhere else */ -/* Copyright (c) 2003, 2004 Martin Quinson. */ -/* All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. 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. */ @@ -72,7 +70,7 @@ XBT_LOG_EXTERNAL_CATEGORY(gras_virtu_process); void gras_init(int *argc, char **argv) { - + int first = 0; gras_procdata_t *pd; gras_msg_procdata_t msg_pd; VERB0("Initialize GRAS"); @@ -85,6 +83,7 @@ void gras_init(int *argc, char **argv) * - declare process specific data we need (without creating them) */ if (gras_running_process == 0) { + first = 1; /* Connect our log channels: that must be done manually under windows */ XBT_LOG_CONNECT(gras_ddt, gras); XBT_LOG_CONNECT(gras_ddt_cbps, gras_ddt); @@ -112,6 +111,7 @@ void gras_init(int *argc, char **argv) gras_trp_register(); gras_msg_register(); } + gras_running_process++; /* * Initialize the process specific stuff @@ -121,7 +121,7 @@ void gras_init(int *argc, char **argv) /* * Initialize the global stuff if it's not the first process created */ - if (gras_running_process++ == 0) { + if (first) { gras_emul_init(); gras_msg_init(); gras_trp_init(); @@ -150,7 +150,7 @@ void gras_exit(void) amok_exit(); gras_moddata_leave(); pd = gras_procdata_get(); - gras_msg_listener_shutdown(pd->listener); + gras_msg_listener_shutdown(); gras_process_exit(); if (--gras_running_process == 0) { gras_msg_exit(); @@ -159,7 +159,6 @@ void gras_exit(void) gras_emul_exit(); gras_moddata_exit(); } - xbt_exit(); } const char *hexa_str(unsigned char *data, int size, int downside)