X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/45ef403897cdd383a630c1500ebdf1cb34142498..438767b311970c8a65b6a891b805e430fd2aeb3f:/include/gras/process.h?ds=sidebyside diff --git a/include/gras/process.h b/include/gras/process.h index d318c9a0f6..5a6d6b38d3 100644 --- a/include/gras/process.h +++ b/include/gras/process.h @@ -35,23 +35,20 @@ xbt_error_t gras_process_exit(void); /* Manipulating User Data */ /****************************************************************************/ /** - * gras_userdata_get: - * - * Get the data associated with the current process. + * \brief Get the data associated with the current process. + * \ingroup GRAS_globals */ void *gras_userdata_get(void); /** - * gras_userdata_set: - * - * Set the data associated with the current process. + * \brief Set the data associated with the current process. + * \ingroup GRAS_globals */ void gras_userdata_set(void *ud); /** - * gras_userdata_new: - * - * Malloc and set the data associated with the current process. + * \brief Malloc and set the data associated with the current process. + * \ingroup GRAS_globals */ #define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get())