aboutsummaryrefslogtreecommitdiffstats
path: root/include/cutils
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-28 15:38:18 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2011-10-28 15:38:18 +0000
commit4ddc88e73e43b98589bc14739acfb2428c5f9cc3 (patch)
tree2f52615f969447b87d2faf0a5b015cc6d4da1b65 /include/cutils
parent46d21ef292157bc3ab9df4e2a47e9b2c053db4da (diff)
parent16210c12bc0a8dab5523289de1e51b6fe8d38053 (diff)
downloadsystem_core-4ddc88e73e43b98589bc14739acfb2428c5f9cc3.tar.gz
system_core-4ddc88e73e43b98589bc14739acfb2428c5f9cc3.tar.bz2
system_core-4ddc88e73e43b98589bc14739acfb2428c5f9cc3.zip
am 16210c12: am 31a02dba: Fix build
* commit '16210c12bc0a8dab5523289de1e51b6fe8d38053': 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 0e638097..df6630fd 100644
--- a/include/cutils/log.h
+++ b/include/cutils/log.h
@@ -79,6 +79,7 @@ extern "C" {
#else
#define ALOGV(...) ((void)ALOG(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)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__)) \
: (void)0 )
#endif
+#define ALOGV_IF LOGV_IF
#endif
/*
@@ -162,6 +164,7 @@ extern "C" {
#else
#define IF_ALOGV() IF_ALOG(LOG_VERBOSE, LOG_TAG)
#endif
+#define IF_ALOGV IF_LOGV
#endif
/*