diff options
author | Rickard Green <[email protected]> | 2016-12-20 17:25:18 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2016-12-20 17:25:18 +0100 |
commit | 23cfe2138c71861684f55a298b55203b4649a645 (patch) | |
tree | 4aa0ac259893f4c5c7fb742e68e7de8db8f8137c /erts/lib_src/common/ethr_aux.c | |
parent | 3473ecd83a7bbe7e0bebb865f25dddb93e3bf10f (diff) | |
download | otp-23cfe2138c71861684f55a298b55203b4649a645.tar.gz otp-23cfe2138c71861684f55a298b55203b4649a645.tar.bz2 otp-23cfe2138c71861684f55a298b55203b4649a645.zip |
Workaround for buggy android implementation of PTHREAD_STACK_MIN
Diffstat (limited to 'erts/lib_src/common/ethr_aux.c')
-rw-r--r-- | erts/lib_src/common/ethr_aux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/lib_src/common/ethr_aux.c b/erts/lib_src/common/ethr_aux.c index 420efd725f..3501fe335a 100644 --- a/erts/lib_src/common/ethr_aux.c +++ b/erts/lib_src/common/ethr_aux.c @@ -220,7 +220,7 @@ ethr_init_common__(ethr_init_data *id) ethr_min_stack_size__ += ethr_pagesize__; #endif /* The system may think that we need more stack */ -#if defined(PTHREAD_STACK_MIN) +#if defined(ETHR_HAVE_USABLE_PTHREAD_STACK_MIN) if (ethr_min_stack_size__ < PTHREAD_STACK_MIN) ethr_min_stack_size__ = PTHREAD_STACK_MIN; #elif defined(_SC_THREAD_STACK_MIN) |