aboutsummaryrefslogtreecommitdiffstats
path: root/include/cutils
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-28 15:36:41 +0100
committerSteve Block <steveblock@google.com>2011-10-28 15:38:20 +0100
commit31a02dba709166df30b7c3352222c550146d7c81 (patch)
treebbfc18e1145a5d5a4b9d5c86a1a5590549fb10d6 /include/cutils
parent52262788834da375b88cb97b995b42c4ffde0f60 (diff)
downloadsystem_core-31a02dba709166df30b7c3352222c550146d7c81.tar.gz
system_core-31a02dba709166df30b7c3352222c550146d7c81.tar.bz2
system_core-31a02dba709166df30b7c3352222c550146d7c81.zip
Fix build
Change-Id: Icbe57024e6018600d47a68132f53f15d7602dc92
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 f6020170..499df3ba 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
/*