Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Begin to move GRASs doc to doxygen
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 6 Feb 2005 21:12:52 +0000 (21:12 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sun, 6 Feb 2005 21:12:52 +0000 (21:12 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@885 48e7efb5-ca39-0410-a469-dd3cf9ba447f

doc/Doxyfile.API.in
include/gras/process.h

index 785d71e..c15319b 100644 (file)
@@ -396,9 +396,11 @@ WARN_LOGFILE           =
 
 INPUT                  = @top_srcdir@/include/ \
                          @top_srcdir@/include/msg \
 
 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@/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
                          @top_srcdir@/src/xbt/ \
                          @top_srcdir@/src/modules.doc \
                          ./api_index.doc
index d318c9a..5a6d6b3 100644 (file)
@@ -35,23 +35,20 @@ xbt_error_t gras_process_exit(void);
 /* Manipulating User Data                                                   */
 /****************************************************************************/
 /**
 /* 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);
 
 /**
  */
 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);
 
 /**
  */
 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())
  */
 
 #define gras_userdata_new(type) (gras_userdata_set(xbt_new0(type,1)),gras_userdata_get())