From: mquinson Date: Sat, 11 Apr 2009 16:40:39 +0000 (+0000) Subject: fix previous commit on gras_userdata_new() by using the result of gras_userdata_set... X-Git-Tag: v3.3~16 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cd357c1bf03d41e9dde1b471e51dbb427258be50?ds=inline fix previous commit on gras_userdata_new() by using the result of gras_userdata_set() instead of calling gras_userdata_get right after git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6230 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/include/gras/process.h b/include/gras/process.h index ac160ed1d7..8c7b7540b7 100644 --- a/include/gras/process.h +++ b/include/gras/process.h @@ -50,7 +50,7 @@ XBT_PUBLIC(void*) gras_userdata_get(void); * \brief Set the data associated with the current process. * \ingroup GRAS_globals */ -XBT_PUBLIC(void) gras_userdata_set(void *ud); +XBT_PUBLIC(void*) gras_userdata_set(void *ud); /** \brief Malloc and set the data associated with the current process. * @@ -61,7 +61,7 @@ XBT_PUBLIC(void) gras_userdata_set(void *ud); * * You'll find an example in the tutorial: \ref GRAS_tut_tour_globals */ -#define gras_userdata_new(type) ((type*)gras_userdata_set(xbt_new0(type,1)),gras_userdata_get()) +#define gras_userdata_new(type) ((type*)gras_userdata_set(xbt_new0(type,1))) /* @} */ SG_END_DECL()