summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-28 15:36:45 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2011-10-28 15:36:45 +0000
commit16210c12bc0a8dab5523289de1e51b6fe8d38053 (patch)
treeb4f6d545348f9d5638f19d9b8f8d06ad240a1635 /include
parent72410ccfaa1c47e4a6e0af0c71f138dca05664f6 (diff)
parent31a02dba709166df30b7c3352222c550146d7c81 (diff)
downloadsystem_core-16210c12bc0a8dab5523289de1e51b6fe8d38053.zip
system_core-16210c12bc0a8dab5523289de1e51b6fe8d38053.tar.gz
system_core-16210c12bc0a8dab5523289de1e51b6fe8d38053.tar.bz2
am 31a02dba: Fix build
* commit '31a02dba709166df30b7c3352222c550146d7c81': Fix build
Diffstat (limited to 'include')
-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 42d7382..5a7c2e1 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
/*