aboutsummaryrefslogtreecommitdiffstats
path: root/emulator
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-12-20 16:21:49 +0000
committerSteve Block <steveblock@google.com>2012-01-03 22:32:22 +0000
commit403ded01593c108fa6133685eb362b304cde987f (patch)
tree231d45124e45edd16d3fca3565330be745d08dee /emulator
parent820265da80f6aef2f95d94bbc329e30999ec794f (diff)
downloadsdk-403ded01593c108fa6133685eb362b304cde987f.zip
sdk-403ded01593c108fa6133685eb362b304cde987f.tar.gz
sdk-403ded01593c108fa6133685eb362b304cde987f.tar.bz2
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016 Bug: 5449033 Change-Id: I9736fcbb62da749c049178b03ddaccda30dcebf5
Diffstat (limited to 'emulator')
-rw-r--r--emulator/gps/gps_qemu.c2
-rw-r--r--emulator/qemud/qemud.c2
-rw-r--r--emulator/sensors/sensors_qemu.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/emulator/gps/gps_qemu.c b/emulator/gps/gps_qemu.c
index a4699d3..49bfb0b 100644
--- a/emulator/gps/gps_qemu.c
+++ b/emulator/gps/gps_qemu.c
@@ -42,7 +42,7 @@
#define GPS_DEBUG 0
#if GPS_DEBUG
-# define D(...) LOGD(__VA_ARGS__)
+# define D(...) ALOGD(__VA_ARGS__)
#else
# define D(...) ((void)0)
#endif
diff --git a/emulator/qemud/qemud.c b/emulator/qemud/qemud.c
index dc04de8..e836376 100644
--- a/emulator/qemud/qemud.c
+++ b/emulator/qemud/qemud.c
@@ -87,7 +87,7 @@
#if DEBUG
# define LOG_TAG "qemud"
# include <cutils/log.h>
-# define D(...) LOGD(__VA_ARGS__)
+# define D(...) ALOGD(__VA_ARGS__)
#else
# define D(...) ((void)0)
# define T(...) ((void)0)
diff --git a/emulator/sensors/sensors_qemu.c b/emulator/sensors/sensors_qemu.c
index ff83bf8..b611f9a 100644
--- a/emulator/sensors/sensors_qemu.c
+++ b/emulator/sensors/sensors_qemu.c
@@ -39,7 +39,7 @@
#include <hardware/sensors.h>
#if 0
-#define D(...) LOGD(__VA_ARGS__)
+#define D(...) ALOGD(__VA_ARGS__)
#else
#define D(...) ((void)0)
#endif
@@ -402,7 +402,7 @@ data__close(struct hw_device_t *dev)
SensorPoll* data = (SensorPoll*)dev;
if (data) {
if (data->events_fd >= 0) {
- //LOGD("(device close) about to close fd=%d", data->events_fd);
+ //ALOGD("(device close) about to close fd=%d", data->events_fd);
close(data->events_fd);
}
free(data);