summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cpukit/include/rtems/assoc.h25
-rw-r--r--cpukit/include/rtems/bsd.h6
2 files changed, 20 insertions, 11 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 */
diff --git a/cpukit/include/rtems/bsd.h b/cpukit/include/rtems/bsd.h
index 0c44e3787d..8f852885f3 100644
--- a/cpukit/include/rtems/bsd.h
+++ b/cpukit/include/rtems/bsd.h
@@ -1,7 +1,7 @@
/**
* @file
*
- * @ingroup BSD
+ * @ingroup RTEMSAPIBSD
*
* @brief BSD Compatibility API
*/
@@ -31,7 +31,9 @@ extern "C" {
#endif /* __cplusplus */
/**
- * @defgroup BSD BSD Compatibility Support
+ * @defgroup RTEMSAPIBSD BSD Compatibility Support
+ *
+ * @ingroup RTEMSAPI
*
* @{
*/