diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/compiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler.cc b/src/compiler.cc index 5389127300..bf19960614 100644 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -1261,7 +1261,7 @@ class DexFilesWorkerThread { if (spawn_) { pthread_attr_t attr; CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new compiler worker thread"); - CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 8*MB), "new compiler worker thread"); + CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 1*MB), "new compiler worker thread"); CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Go, this), "new compiler worker thread"); CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new compiler worker thread"); } |