X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f45bc68e17a95c4277dbe63aaef98dda61536153..cd357c1bf03d41e9dde1b471e51dbb427258be50:/include/gras/process.h 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()