summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2013-01-25 19:46:45 +0100
committerDees_Troy <dees_troy@teamw.in>2013-01-28 16:12:30 +0100
commiteb50caaa7a1344b95a668082d1b1909a77c8bd00 (patch)
tree0843ea5b30ff5b10c5850d08744a0c01748c3483
parentMerge "Fix file manager displays empty list when folder is deleted" into twrp2.4 (diff)
downloadandroid_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar.gz
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar.bz2
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar.lz
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar.xz
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.tar.zst
android_bootable_recovery-eb50caaa7a1344b95a668082d1b1909a77c8bd00.zip
-rw-r--r--gui/action.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/gui/action.cpp b/gui/action.cpp
index 22e362177..e56db2b76 100644
--- a/gui/action.cpp
+++ b/gui/action.cpp
@@ -254,7 +254,6 @@ int GUIAction::doActions()
return -1;
}
*/
- LOGI("Creating thread\n");
int ret = pthread_create(&t, &tattr, thread_start, this);
if (ret) {
LOGE("Unable to create more threads for actions... continuing in same thread! %i\n", ret);
@@ -262,8 +261,6 @@ int GUIAction::doActions()
} else {
if (pthread_join(t, NULL)) {
LOGE("Error joining threads\n");
- } else {
- LOGI("Thread joined\n");
}
}
if (pthread_attr_destroy(&tattr)) {