summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/assoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/assoc.h')
-rw-r--r--cpukit/include/rtems/assoc.h25
1 files changed, 16 insertions, 9 deletions
diff --git a/cpukit/include/rtems/assoc.h b/cpukit/include/rtems/assoc.h
index 97e50013d7..78cbdf6efe 100644
--- a/cpukit/include/rtems/assoc.h
+++ b/cpukit/include/rtems/assoc.h
@@ -1,21 +1,15 @@
/**
* @file
*
- * @brief RTEMS Associativity Routines
+ * @ingroup RTEMSAPIAssociativity
*
- * RTEMS associativity routines. Mainly used to convert a value from
- * one space to another (eg: our errno's to host errno's and vice-versa)
+ * @brief RTEMS Associativity Routines
*/
#ifndef _RTEMS_RTEMS_ASSOC_H
#define _RTEMS_RTEMS_ASSOC_H
-/**
- * @defgroup Associativity Associativity Routines
- */
-/**@{*/
-
#include <stddef.h>
#include <stdint.h>
@@ -23,6 +17,17 @@
extern "C" {
#endif
+/**
+ * @defgroup RTEMSAPIAssociativity Associativity Routines
+ *
+ * @ingroup RTEMSAPI
+ *
+ * RTEMS associativity routines. Mainly used to convert a value from
+ * one space to another (eg: our errno's to host errno's and vice-versa)
+ *
+ * @{
+ */
+
typedef struct {
const char *name;
uint32_t local_value;
@@ -197,8 +202,10 @@ size_t rtems_assoc_thread_states_to_string(
size_t buffer_size
);
+/** @} */
+
#ifdef __cplusplus
}
#endif
-/**@}*/
+
#endif /* ! _RTEMS_RTEMS_ASSOC_H */