aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@nokia.com>2015-07-09 16:46:25 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2015-07-21 18:15:02 +0300
commit9b5abeb66e7d38829cefe467354ae3b58491975f (patch)
tree3f208765a2176154eed846a9f763ca4ff8ef5abf
parent5be42d9a8508a4e45786c59bd6bd0e058059540f (diff)
api: doc: doxygen grouping clean up
Cleaned Doxygen documentation grouping. Corrected wrong groupings and created new groups when needed. Signed-off-by: Petri Savolainen <petri.savolainen@nokia.com> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
-rw-r--r--include/odp/api/buffer.h11
-rw-r--r--include/odp/api/config.h2
-rw-r--r--include/odp/api/cpumask.h2
-rw-r--r--include/odp/api/debug.h14
-rw-r--r--include/odp/api/errno.h2
-rw-r--r--include/odp/api/pool.h2
-rw-r--r--include/odp/api/system_info.h2
-rw-r--r--include/odp/api/time.h2
-rw-r--r--include/odp/api/version.h2
-rw-r--r--platform/linux-generic/include/odp/config.h8
-rw-r--r--platform/linux-generic/include/odp/cpumask.h8
-rw-r--r--platform/linux-generic/include/odp/errno.h6
-rw-r--r--platform/linux-generic/include/odp/plat/buffer_types.h9
-rw-r--r--platform/linux-generic/include/odp/plat/cpumask_types.h2
-rw-r--r--platform/linux-generic/include/odp/system_info.h7
-rw-r--r--platform/linux-generic/include/odp/time.h6
16 files changed, 11 insertions, 74 deletions
diff --git a/include/odp/api/buffer.h b/include/odp/api/buffer.h
index 9ad08eae..aea273f0 100644
--- a/include/odp/api/buffer.h
+++ b/include/odp/api/buffer.h
@@ -24,7 +24,6 @@ extern "C" {
* @{
*/
-
/**
* @typedef odp_buffer_t
* ODP buffer
@@ -36,16 +35,6 @@ extern "C" {
*/
/**
- * @typedef odp_buffer_seg_t
- * ODP buffer segment
- */
-
-/**
- * @def ODP_SEGMENT_INVALID
- * Invalid segment
- */
-
-/**
* Get buffer handle from event
*
* Converts an ODP_EVENT_BUFFER type event to a buffer.
diff --git a/include/odp/api/config.h b/include/odp/api/config.h
index 91ea34e6..b5c8fdd5 100644
--- a/include/odp/api/config.h
+++ b/include/odp/api/config.h
@@ -18,7 +18,7 @@
extern "C" {
#endif
-/** @addtogroup odp_compiler_optim
+/** @defgroup odp_config ODP CONFIG
* Macro for maximum number of resources in ODP.
* @{
*/
diff --git a/include/odp/api/cpumask.h b/include/odp/api/cpumask.h
index dbac7b91..e0cc4e7b 100644
--- a/include/odp/api/cpumask.h
+++ b/include/odp/api/cpumask.h
@@ -20,7 +20,7 @@ extern "C" {
#include <odp/config.h>
-/** @addtogroup odp_scheduler
+/** @defgroup odp_cpumask ODP CPUMASK
* CPU mask operations.
* @{
*/
diff --git a/include/odp/api/debug.h b/include/odp/api/debug.h
index 660569f9..252a82f5 100644
--- a/include/odp/api/debug.h
+++ b/include/odp/api/debug.h
@@ -17,18 +17,13 @@
extern "C" {
#endif
-/** @addtogroup odp_ver_abt_log_dbg
- * Macros that allows different messages.
- * @{
- */
-
#if defined(__GNUC__) && !defined(__clang__)
#if __GNUC__ < 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ < 6))
/**
- * _Static_assert was only added in GCC 4.6. Provide a weak replacement
+ * @internal _Static_assert was only added in GCC 4.6. Provide a weak replacement
* for previous versions.
*/
#define _Static_assert(e, s) (extern int (*static_assert_checker(void)) \
@@ -42,14 +37,11 @@ extern "C" {
/**
- * Compile time assertion-macro - fail compilation if cond is false.
- * @note This macro has zero runtime overhead
+ * @internal Compile time assertion-macro - fail compilation if cond is false.
+ * This macro has zero runtime overhead
*/
#define _ODP_STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
-/**
- * @}
- */
#ifdef __cplusplus
}
diff --git a/include/odp/api/errno.h b/include/odp/api/errno.h
index 527214ef..98298073 100644
--- a/include/odp/api/errno.h
+++ b/include/odp/api/errno.h
@@ -17,7 +17,7 @@
extern "C" {
#endif
-/** @addtogroup odp_ver_abt_log_dbg
+/** @defgroup odp_errno ODP ERRNO
* @{
*/
diff --git a/include/odp/api/pool.h b/include/odp/api/pool.h
index c679781a..a813d337 100644
--- a/include/odp/api/pool.h
+++ b/include/odp/api/pool.h
@@ -22,7 +22,7 @@ extern "C" {
#include <odp/std_types.h>
-/** @addtogroup odp_buffer
+/** @defgroup odp_pool ODP POOL
* Operations on a pool.
* @{
*/
diff --git a/include/odp/api/system_info.h b/include/odp/api/system_info.h
index 1f3294bc..e55ff6d4 100644
--- a/include/odp/api/system_info.h
+++ b/include/odp/api/system_info.h
@@ -19,7 +19,7 @@ extern "C" {
#endif
-/** @addtogroup odp_ver_abt_log_dbg
+/** @defgroup odp_system ODP SYSTEM
* @{
*/
diff --git a/include/odp/api/time.h b/include/odp/api/time.h
index 836866da..b0072fcd 100644
--- a/include/odp/api/time.h
+++ b/include/odp/api/time.h
@@ -19,7 +19,7 @@ extern "C" {
#endif
-/** @defgroup odp_system ODP SYSTEM
+/** @defgroup odp_time ODP TIME
* @{
*/
diff --git a/include/odp/api/version.h b/include/odp/api/version.h
index 5d1abfaa..93fbacf3 100644
--- a/include/odp/api/version.h
+++ b/include/odp/api/version.h
@@ -18,7 +18,7 @@
extern "C" {
#endif
-/** @defgroup odp_ver_abt_log_dbg ODP LOGGING / ABORT / VERSION / DEBUG / ERRNO
+/** @defgroup odp_version ODP VERSION
* @{
*/
diff --git a/platform/linux-generic/include/odp/config.h b/platform/linux-generic/include/odp/config.h
index b0211b1a..6fecd389 100644
--- a/platform/linux-generic/include/odp/config.h
+++ b/platform/linux-generic/include/odp/config.h
@@ -17,14 +17,6 @@
extern "C" {
#endif
-/** @ingroup odp_compiler_optim
- * @{
- */
-
-/**
- * @}
- */
-
#include <odp/api/config.h>
#ifdef __cplusplus
diff --git a/platform/linux-generic/include/odp/cpumask.h b/platform/linux-generic/include/odp/cpumask.h
index f09bb91d..cf7ad9d6 100644
--- a/platform/linux-generic/include/odp/cpumask.h
+++ b/platform/linux-generic/include/odp/cpumask.h
@@ -23,14 +23,6 @@ extern "C" {
#include <odp/std_types.h>
#include <odp/plat/cpumask_types.h>
-/** @ingroup odp_scheduler
- * @{
- */
-
-/**
- * @}
- */
-
#include <odp/api/cpumask.h>
#ifdef __cplusplus
diff --git a/platform/linux-generic/include/odp/errno.h b/platform/linux-generic/include/odp/errno.h
index 3e9e1fa3..e53b49cf 100644
--- a/platform/linux-generic/include/odp/errno.h
+++ b/platform/linux-generic/include/odp/errno.h
@@ -17,13 +17,7 @@
extern "C" {
#endif
-/** @addtogroup odp_ver_abt_log_dbg
- * @{
- */
-/**
- * @}
- */
#include <odp/api/errno.h>
#ifdef __cplusplus
diff --git a/platform/linux-generic/include/odp/plat/buffer_types.h b/platform/linux-generic/include/odp/plat/buffer_types.h
index 0c017ae5..32030206 100644
--- a/platform/linux-generic/include/odp/plat/buffer_types.h
+++ b/platform/linux-generic/include/odp/plat/buffer_types.h
@@ -20,11 +20,6 @@ extern "C" {
#include <odp/std_types.h>
#include <odp/plat/strong_types.h>
-/** @addtogroup odp_buffer ODP BUFFER
- * Operations on a buffer.
- * @{
- */
-
/** ODP buffer */
typedef ODP_HANDLE_T(odp_buffer_t);
@@ -43,10 +38,6 @@ static inline uint64_t odp_buffer_to_u64(odp_buffer_t hdl)
return _odp_pri(hdl);
}
-/**
- * @}
- */
-
#ifdef __cplusplus
}
#endif
diff --git a/platform/linux-generic/include/odp/plat/cpumask_types.h b/platform/linux-generic/include/odp/plat/cpumask_types.h
index df3c797d..6fba8321 100644
--- a/platform/linux-generic/include/odp/plat/cpumask_types.h
+++ b/platform/linux-generic/include/odp/plat/cpumask_types.h
@@ -18,7 +18,7 @@
extern "C" {
#endif
-/** @addtogroup odp_compiler_optim
+/** @addtogroup odp_cpumask
* @{
*/
diff --git a/platform/linux-generic/include/odp/system_info.h b/platform/linux-generic/include/odp/system_info.h
index 1e8811ca..d6926061 100644
--- a/platform/linux-generic/include/odp/system_info.h
+++ b/platform/linux-generic/include/odp/system_info.h
@@ -19,13 +19,6 @@ extern "C" {
#include <odp/std_types.h>
-/** @ingroup odp_ver_abt_log_dbg
- * @{
- */
-
-/**
- * @}
- */
#include <odp/api/system_info.h>
diff --git a/platform/linux-generic/include/odp/time.h b/platform/linux-generic/include/odp/time.h
index 0620ebd0..3a3960b0 100644
--- a/platform/linux-generic/include/odp/time.h
+++ b/platform/linux-generic/include/odp/time.h
@@ -19,13 +19,7 @@ extern "C" {
#include <odp/std_types.h>
-/** @ingroup odp_system
- * @{
- */
-/**
- * @}
- */
#include <odp/api/time.h>