X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/421e2f7dd584b6aa936de631a730fb3b21ca7565..45ef403897cdd383a630c1500ebdf1cb34142498:/src/gras/Virtu/process.c diff --git a/src/gras/Virtu/process.c b/src/gras/Virtu/process.c index 838aaa4e60..e18b3f29c5 100644 --- a/src/gras/Virtu/process.c +++ b/src/gras/Virtu/process.c @@ -2,11 +2,10 @@ /* process - GRAS process handling (common code for RL and SG) */ -/* 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 "xbt/sysdep.h" #include "xbt/log.h" @@ -18,7 +17,7 @@ #include "gras/Virtu/virtu_interface.h" #include "gras/Msg/msg_interface.h" /* FIXME: Get rid of this cyclic */ -GRAS_LOG_NEW_DEFAULT_SUBCATEGORY(process,gras,"Process manipulation code"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(process,gras,"Process manipulation code"); /* ************************************************************************** * Process data @@ -38,21 +37,21 @@ void gras_procdata_init() { gras_procdata_t *pd=gras_procdata_get(); pd->userdata = NULL; - pd->msg_queue = gras_dynar_new(sizeof(gras_msg_t), NULL); - pd->cbl_list = gras_dynar_new(sizeof(gras_cblist_t *),gras_cbl_free); - pd->sockets = gras_dynar_new(sizeof(gras_socket_t*), NULL); + pd->msg_queue = xbt_dynar_new(sizeof(gras_msg_t), NULL); + pd->cbl_list = xbt_dynar_new(sizeof(gras_cblist_t *),gras_cbl_free); + pd->sockets = xbt_dynar_new(sizeof(gras_socket_t*), NULL); } void gras_procdata_exit() { gras_procdata_t *pd=gras_procdata_get(); - gras_dynar_free(&( pd->msg_queue )); - gras_dynar_free(&( pd->cbl_list )); - gras_dynar_free(&( pd->sockets )); + xbt_dynar_free(&( pd->msg_queue )); + xbt_dynar_free(&( pd->cbl_list )); + xbt_dynar_free(&( pd->sockets )); } -gras_dynar_t +xbt_dynar_t gras_socketset_get(void) { return gras_procdata_get()->sockets; }