Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE

See https://android-git.corp.google.com/g/156016

Bug: 5449033
Change-Id: Ia14c98936bb1dc74e681bf2de342ad6861646778
This commit is contained in:
Steve Block
2011-12-20 16:22:33 +00:00
parent dcea17d050
commit 112bc5e57e
15 changed files with 36 additions and 36 deletions

View File

@@ -35,13 +35,13 @@
#define DEBUG 0
#if DEBUG >= 1
# define D(...) LOGD(__VA_ARGS__)
# define D(...) ALOGD(__VA_ARGS__)
#else
# define D(...) ((void)0)
#endif
#if DEBUG >= 2
# define DD(...) LOGD(__VA_ARGS__)
# define DD(...) ALOGD(__VA_ARGS__)
#else
# define DD(...) ((void)0)
#endif
@@ -805,7 +805,7 @@ fallback_init(void)
if (atoi(prop) > 0) {
return;
}
LOGD("Emulator without GPU emulation detected.");
ALOGD("Emulator without GPU emulation detected.");
module = dlopen("/system/lib/hw/gralloc.default.so", RTLD_LAZY|RTLD_LOCAL);
if (module != NULL) {
sFallback = reinterpret_cast<gralloc_module_t*>(dlsym(module, HAL_MODULE_INFO_SYM_AS_STR));