X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3d0d626e19a7b79320e7d922c9c1dcf122076cea..d38fd32fe23b21705687ece2ed3624626b62d8ad:/src/gras/Virtu/rl_process.c diff --git a/src/gras/Virtu/rl_process.c b/src/gras/Virtu/rl_process.c index 3297932d45..ae191c35c3 100644 --- a/src/gras/Virtu/rl_process.c +++ b/src/gras/Virtu/rl_process.c @@ -1,28 +1,29 @@ /* $Id$ */ -/* process_rl - GRAS process handling on real life */ +/* process_rl - GRAS process handling on real life */ -/* Authors: Martin Quinson */ -/* Copyright (C) 2003,2004 da GRAS posse. */ +/* Copyright (c) 2003, 2004 Martin Quinson. 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. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ +#include "gras_modinter.h" /* module initialization interface */ #include "gras/Virtu/virtu_rl.h" -GRAS_LOG_EXTERNAL_CATEGORY(process); -GRAS_LOG_DEFAULT_CATEGORY(process); +XBT_LOG_EXTERNAL_CATEGORY(process); +XBT_LOG_DEFAULT_CATEGORY(process); /* globals */ static gras_procdata_t *_gras_procdata = NULL; -gras_error_t gras_process_init() { - _gras_procdata=gras_new(gras_procdata_t,1); +xbt_error_t gras_process_init() { + _gras_procdata=xbt_new(gras_procdata_t,1); gras_procdata_init(); return no_error; } -gras_error_t gras_process_exit() { +xbt_error_t gras_process_exit() { gras_procdata_exit(); + free(_gras_procdata); return no_error; } @@ -31,7 +32,7 @@ gras_error_t gras_process_exit() { * **************************************************************************/ gras_procdata_t *gras_procdata_get(void) { - gras_assert0(_gras_procdata,"Run gras_process_init!"); + xbt_assert0(_gras_procdata,"Run gras_process_init (ie, gras_init)!"); return _gras_procdata; }