diff options
| author | 2012-01-05 23:22:43 +0000 | |
|---|---|---|
| committer | 2012-01-19 14:44:59 -0800 | |
| commit | 252778f3ef8deb8103ad60ba84636cf16e0bf605 (patch) | |
| tree | 161809f0b6cb8029212c8fa18c8b0829927dfa3a /libs/utils/Threads.cpp | |
| parent | 5b11920b1ac845fa6d5890e0e107c576b57a4c4a (diff) | |
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Change-Id: I8fbdfa7a7581f481968dbb65aa40f7042936d7cb
Diffstat (limited to 'libs/utils/Threads.cpp')
| -rw-r--r-- | libs/utils/Threads.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/Threads.cpp b/libs/utils/Threads.cpp index fe4b8e62b2..fb52d7c747 100644 --- a/libs/utils/Threads.cpp +++ b/libs/utils/Threads.cpp @@ -870,7 +870,7 @@ status_t Thread::requestExitAndWait() { Mutex::Autolock _l(mLock); if (mThread == getThreadId()) { - LOGW( + ALOGW( "Thread (this=%p): don't call waitForExit() from this " "Thread object's thread. It's a guaranteed deadlock!", this); @@ -894,7 +894,7 @@ status_t Thread::join() { Mutex::Autolock _l(mLock); if (mThread == getThreadId()) { - LOGW( + ALOGW( "Thread (this=%p): don't call join() from this " "Thread object's thread. It's a guaranteed deadlock!", this); |