From 438767b311970c8a65b6a891b805e430fd2aeb3f Mon Sep 17 00:00:00 2001 From: mquinson Date: Sun, 6 Feb 2005 21:12:52 +0000 Subject: [PATCH] Begin to move GRASs doc to doxygen git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@885 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- doc/Doxyfile.API.in | 2 ++ include/gras/process.h | 15 ++++++--------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/doc/Doxyfile.API.in b/doc/Doxyfile.API.in index 785d71e611..c15319b8c6 100644 --- a/doc/Doxyfile.API.in +++ b/doc/Doxyfile.API.in @@ -396,9 +396,11 @@ WARN_LOGFILE = INPUT = @top_srcdir@/include/ \ @top_srcdir@/include/msg \ + @top_srcdir@/include/gras \ @top_srcdir@/include/xbt \ @top_srcdir@/src/surf/ \ @top_srcdir@/src/msg/ \ + @top_srcdir@/src/gras/ \ @top_srcdir@/src/xbt/ \ @top_srcdir@/src/modules.doc \ ./api_index.doc 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()) -- 2.20.1