X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2539fff313cbd67c45b8490f7961e45e358d9ba2..284832ed09bcd8f66de2c3e6287fb11bb10dc9be:/src/gras/DataDesc/datadesc.c diff --git a/src/gras/DataDesc/datadesc.c b/src/gras/DataDesc/datadesc.c index e7e7ce1015..c16f8e284a 100644 --- a/src/gras/DataDesc/datadesc.c +++ b/src/gras/DataDesc/datadesc.c @@ -2,24 +2,25 @@ /* datadesc - data description in order to send/recv it in GRAS */ -/* Authors: Olivier Aumage, Martin Quinson */ -/* Copyright (C) 2003, 2004 the GRAS posse. */ +/* Copyright (c) 2003 Olivier Aumage. */ +/* 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/DataDesc/datadesc_private.h" XBT_LOG_NEW_DEFAULT_SUBCATEGORY(datadesc,gras,"Data description"); /* FIXME: make this host-dependent using a trick such as UserData*/ -xbt_set_t gras_datadesc_set_local=NULL; +/*@null@*/xbt_set_t gras_datadesc_set_local=NULL; /* callback for array size when sending strings */ static int -_strlen_cb(gras_cbps_t vars, void *data) { +_strlen_cb(/*@unused@*/gras_cbps_t vars, void *data) { - return 1+(long int)strlen(data); + return 1+(int)strlen(data); } @@ -32,7 +33,6 @@ _strlen_cb(gras_cbps_t vars, void *data) { **/ void gras_datadesc_init(void) { - xbt_error_t errcode; gras_datadesc_type_t ddt; /* What to add */ /* only initialize once */ @@ -126,20 +126,12 @@ gras_datadesc_exit(void) { DEBUG0("Exited DataDesc"); } -/** - * gras_datadesc_get_name: - * - * Returns the name of a datadescription (to ease the debug) - */ +/** This is mainly to debug */ char * gras_datadesc_get_name(gras_datadesc_type_t ddt) { return ddt->name; } -/** - * gras_datadesc_get_id: - * - * Returns the name of a datadescription (to ease the debug) - */ +/** This is mainly to debug */ int gras_datadesc_get_id(gras_datadesc_type_t ddt) { return ddt->code;