diff options
author | Max Romanov <max.romanov@nginx.com> | 2021-09-14 19:35:49 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2021-09-14 19:35:49 +0300 |
commit | d21ebcce833ff10dd1e199a75d523f81b5549b6d (patch) | |
tree | e96ee53e569b0ceb9e42a2fc47ef33a3a77ec2ca /src/nxt_conf_validation.c | |
parent | a336928e1027af92d0c9bb2ccb369a3f9b53abae (diff) | |
download | unit-d21ebcce833ff10dd1e199a75d523f81b5549b6d.tar.gz unit-d21ebcce833ff10dd1e199a75d523f81b5549b6d.tar.bz2 |
Fixing build with glibc 2.34.
Explicitly using the sysconf() call to obtain the minimum thread stack size
instead of the PTHREAD_STACK_MIN macro.
This closes #576 PR on GitHub.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_conf_validation.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/nxt_conf_validation.c b/src/nxt_conf_validation.c index a53fff74..18c2d478 100644 --- a/src/nxt_conf_validation.c +++ b/src/nxt_conf_validation.c @@ -1733,14 +1733,15 @@ static nxt_int_t nxt_conf_vldt_thread_stack_size(nxt_conf_validation_t *vldt, nxt_conf_value_t *value, void *data) { - int64_t size; + int64_t size, min_size; size = nxt_conf_get_number(value); + min_size = sysconf(_SC_THREAD_STACK_MIN); - if (size < NXT_THREAD_STACK_MIN) { + if (size < min_size) { return nxt_conf_vldt_error(vldt, "The \"thread_stack_size\" number " "must be equal to or greater than %d.", - NXT_THREAD_STACK_MIN); + min_size); } if ((size % nxt_pagesize) != 0) { |