diff options
author | Steve Block <steveblock@google.com> | 2012-01-06 19:16:58 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-08 11:26:30 +0000 |
commit | c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef (patch) | |
tree | 76e90a6ae1910835a56e4dad3f60f42392645703 /vm/Sync.cpp | |
parent | e8e1ddccd616e8226b7cc1e4e9fdb327429249e8 (diff) | |
download | android_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.tar.gz android_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.tar.bz2 android_dalvik-c1a4ab9c313d8a3d12007f2dbef7b5a6fa4ac2ef.zip |
Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/157220
Also fix an occurrence of LOGW missed in an earlier change.
Bug: 5449033
Change-Id: I2e3b23839e6dcd09015d6402280e9300c75e3406
Diffstat (limited to 'vm/Sync.cpp')
-rw-r--r-- | vm/Sync.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/Sync.cpp b/vm/Sync.cpp index 4010432dc..8a3803eb4 100644 --- a/vm/Sync.cpp +++ b/vm/Sync.cpp @@ -98,11 +98,11 @@ Monitor* dvmCreateMonitor(Object* obj) mon = (Monitor*) calloc(1, sizeof(Monitor)); if (mon == NULL) { - LOGE("Unable to allocate monitor"); + ALOGE("Unable to allocate monitor"); dvmAbort(); } if (((u4)mon & 7) != 0) { - LOGE("Misaligned monitor: %p", mon); + ALOGE("Misaligned monitor: %p", mon); dvmAbort(); } mon->obj = obj; @@ -1365,7 +1365,7 @@ retry: dvmUnlockThreadList(); goto retry; } - LOGE("object %p has an unknown hash state %#x", obj, hashState); + ALOGE("object %p has an unknown hash state %#x", obj, hashState); dvmDumpThread(dvmThreadSelf(), false); dvmAbort(); return 0; /* Quiet the compiler. */ |