aboutsummaryrefslogtreecommitdiffstats
path: root/include/cutils
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-11-15 11:10:09 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-11-15 11:10:09 -0800
commit67b11cba5bccd0cdc3ce6117a19c5f036f95d35f (patch)
tree7700030515830f3087c710fe9ef1408d225eefd6 /include/cutils
parent1351edeb56095fb49ceacd927a15b450d8e8dd62 (diff)
parent25a89e771aae292193244852166564e83e36232b (diff)
downloadsystem_core-67b11cba5bccd0cdc3ce6117a19c5f036f95d35f.tar.gz
system_core-67b11cba5bccd0cdc3ce6117a19c5f036f95d35f.tar.bz2
system_core-67b11cba5bccd0cdc3ce6117a19c5f036f95d35f.zip
am 25a89e77: Fix build
* commit '25a89e771aae292193244852166564e83e36232b': Fix build
Diffstat (limited to 'include/cutils')
-rw-r--r--include/cutils/log.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/cutils/log.h b/include/cutils/log.h
index 42d73829..5a7c2e1c 100644
--- a/include/cutils/log.h
+++ b/include/cutils/log.h
@@ -79,6 +79,7 @@ extern "C" {
#else
#define LOGV(...) ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
#endif
+#define ALOGV LOGV
#endif
#define CONDITION(cond) (__builtin_expect((cond)!=0, 0))
@@ -92,6 +93,7 @@ extern "C" {
? ((void)LOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
: (void)0 )
#endif
+#define ALOGV_IF LOGV_IF
#endif
/*
@@ -162,6 +164,7 @@ extern "C" {
#else
#define IF_LOGV() IF_LOG(LOG_VERBOSE, LOG_TAG)
#endif
+#define IF_ALOGV IF_LOGV
#endif
/*