Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix previous commit on gras_userdata_new() by using the result of gras_userdata_set...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 16:40:39 +0000 (16:40 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 16:40:39 +0000 (16:40 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6230 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/gras/process.h

index ac160ed..8c7b754 100644 (file)
@@ -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()