mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
hurd: Fix build
* stdlib/test-atexit-race-common.c [!defined PTHREAD_STACK_MIN]: Do not check against PTHREAD_STACK_MIN.
This commit is contained in:
@ -39,7 +39,10 @@
|
||||
const size_t kNumThreads = 1024;
|
||||
const size_t kNumHandlers = 1024;
|
||||
const size_t kStacksize =
|
||||
0x20000 < PTHREAD_STACK_MIN ? PTHREAD_STACK_MIN : 0x20000;
|
||||
#ifdef PTHREAD_STACK_MIN
|
||||
0x20000 < PTHREAD_STACK_MIN ? PTHREAD_STACK_MIN :
|
||||
#endif
|
||||
0x20000;
|
||||
|
||||
static void *
|
||||
threadfunc (void *unused)
|
||||
|
Reference in New Issue
Block a user