Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
gras_userdata_new expects the pointed type, not the pointer type. Fix tutorial, and...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 16:40:02 +0000 (16:40 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 16:40:02 +0000 (16:40 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6227 48e7efb5-ca39-0410-a469-dd3cf9ba447f

doc/gtut-files/05-globals.c
doc/gtut-tour-05-globals.doc
include/gras/process.h

index 9e71e02..aeb2223 100644 (file)
@@ -33,7 +33,7 @@ int server(int argc, char *argv[]) {
   
   gras_init(&argc,argv);
 
-  globals=gras_userdata_new(server_data_t*);
+  globals=gras_userdata_new(server_data_t);
   globals->killed=0;
 
   gras_msgtype_declare("hello", NULL);
index b0bb570..b35c3f7 100644 (file)
@@ -42,6 +42,11 @@ should pass it a pointer to your data you want to retrieve afterward.
 \skip userdata_new
 \until userdata_new
 
+BEWARE, the gras_userdata_new expects the pointed type, not the
+pointer type. As you can see, in our example, you should pass
+server_data_t to the macro, even if the global variable is later
+defined as being of type server_data_t*.
+
 Once you declared a global that way, retriving this (for example in a
 callback) is really easy:
 \dontinclude 05-globals.c
index 43ead0c..00d1635 100644 (file)
@@ -34,6 +34,7 @@ void gras_agent_spawn(const char *name, void *data, xbt_main_func_t code, int ar
  * and use \ref gras_userdata_set yourself), and \ref gras_userdata_get to
  * retrieve a reference to it.
  * 
+ * 
  * For more info on this, you may want to check the relevant lesson of the GRAS tutorial:
  * \ref GRAS_tut_tour_globals
  */
@@ -51,7 +52,15 @@ XBT_PUBLIC(void*) gras_userdata_get(void);
  */
 XBT_PUBLIC(void) gras_userdata_set(void *ud);
 
-/** \brief Malloc and set the data associated with the current process. */
+/** \brief Malloc and set the data associated with the current process.
+ *
+ * @warnug gras_userdata_new() expects the pointed type, not the
+ * pointer type. We know it'a a bit troublesome, but it seems like
+ * the only solution since this macro has to compute the size to
+ * malloc and should thus know the pointed type. 
+ *
+ * You'll find an example in the tutorial:  \ref GRAS_tut_tour_globals
+ */
 #define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get())
 /* @} */