From 55a76719e28740c289f553978d5c4226faf5ca05 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Fri, 13 Apr 2018 14:49:41 -0700 Subject: [PATCH] Add missing @addtogroup tags. These NDK docs weren't in any groups, so they don't show up in the new site. Test: https://irina-dot-devsite.googleplex.com/ndk/reference/group/logging Test: https://irina-dot-devsite.googleplex.com/ndk/reference/group/sync Bug: http://b/77236573 Change-Id: I300f96585dec94359ecf96fbf39c6dc3ec4579e5 --- liblog/include/android/log.h | 7 +++++++ libsync/include/ndk/sync.h | 11 +++++++++++ 2 files changed, 18 insertions(+) diff --git a/liblog/include/android/log.h b/liblog/include/android/log.h index 28c87e46d..52cbe8b71 100644 --- a/liblog/include/android/log.h +++ b/liblog/include/android/log.h @@ -34,6 +34,11 @@ * - DO NOT CHANGE THE LAYOUT OR SIZE OF STRUCTURES */ +/** + * @addtogroup Logging + * @{ + */ + /** * \file * @@ -205,4 +210,6 @@ int __android_log_buf_print(int bufID, int prio, const char* tag, } #endif +/** @} */ + #endif /* _ANDROID_LOG_H */ diff --git a/libsync/include/ndk/sync.h b/libsync/include/ndk/sync.h index 3c5578313..a786d3ef9 100644 --- a/libsync/include/ndk/sync.h +++ b/libsync/include/ndk/sync.h @@ -14,6 +14,15 @@ * limitations under the License. */ +/** + * @addtogroup Sync + * @{ + */ + +/** + * @file sync.h + */ + #ifndef ANDROID_SYNC_H #define ANDROID_SYNC_H @@ -86,3 +95,5 @@ void sync_file_info_free(struct sync_file_info *info); __END_DECLS #endif /* ANDROID_SYNC_H */ + +/** @} */