summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorbigbiff bigbiff <bigbiff@teamw.in>2013-01-22 03:26:43 +0100
committerDees_Troy <dees_troy@teamw.in>2013-01-24 20:44:11 +0100
commit3bf2b0e63052bb5537398f38ecc5b19fec7dec39 (patch)
tree1863f58ab9caa25232741dc25dcded4368020ae4 /gui
parentmove libexfat and fuse to be compiled with mkexfatfs (diff)
downloadandroid_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar.gz
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar.bz2
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar.lz
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar.xz
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.tar.zst
android_bootable_recovery-3bf2b0e63052bb5537398f38ecc5b19fec7dec39.zip
Diffstat (limited to 'gui')
-rw-r--r--gui/action.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/action.cpp b/gui/action.cpp
index 14ef71609..997cf558e 100644
--- a/gui/action.cpp
+++ b/gui/action.cpp
@@ -249,10 +249,11 @@ int GUIAction::doActions()
LOGE("Error setting pthread_attr_setscope\n");
return -1;
}
- if (pthread_attr_setstacksize(&tattr, 524288)) {
+ /*if (pthread_attr_setstacksize(&tattr, 524288)) {
LOGE("Error setting pthread_attr_setstacksize\n");
return -1;
}
+ */
LOGI("Creating thread\n");
int ret = pthread_create(&t, &tattr, thread_start, this);
if (ret) {