change tar create to pthread

Change-Id: I5a33d207ec6683de20da37e6f4f174c67785fc52
This commit is contained in:
bigbiff bigbiff
2013-01-21 21:26:43 -05:00
committed by Dees_Troy
parent 1b9c7be027
commit 3bf2b0e630
5 changed files with 166 additions and 90 deletions
+2 -1
View File
@@ -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) {