summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/assoc.h
diff options
context:
space:
mode:
authorAndreas Dachsberger <andreas.dachsberger@embedded-brains.de>2019-04-02 12:06:30 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-04-04 08:12:35 +0200
commitb7927efc5a02275beffb0205fc514637b39391b1 (patch)
tree69620631c2f56cd03d2ff9ddbf428053c1526d54 /cpukit/include/rtems/assoc.h
parentdoxygen: Added Mainpage to RTEMSAPIClassic (diff)
downloadrtems-b7927efc5a02275beffb0205fc514637b39391b1.tar.bz2
doxygen: Added further groups to RTEMSAPI
Update #3706. Associativity Routines, BSD Compatibility Support now part of RTEMSAPI
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 */