From cd357c1bf03d41e9dde1b471e51dbb427258be50 Mon Sep 17 00:00:00 2001 From: mquinson Date: Sat, 11 Apr 2009 16:40:39 +0000 Subject: [PATCH] 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 --- include/gras/process.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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() -- 2.20.1