Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
explain why I hate doxygen so much tonight, and go have a decent sleep
[simgrid.git] / include / gras / process.h
index 5261482..5a6d6b3 100644 (file)
@@ -1,8 +1,8 @@
-/* $Id$                     */
+/* $Id$ */
 
-/* gras/core.h - Unsorted part of the GRAS public interface                 */
+/* gras/process.h - Manipulating data related to an host.                   */
 
-/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
+/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
@@ -12,7 +12,7 @@
 
 #include "xbt/misc.h" /* BEGIN_DECL */
 
-BEGIN_DECL
+BEGIN_DECL()
 
 /* **************************************************************************
  * Initializing the processes
@@ -35,28 +35,25 @@ 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())
 
-END_DECL
+END_DECL()
 
 #endif /* GRAS_PROCESS_H */