1
0
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:
Samuel Thibault
2018-02-04 13:48:49 +01:00
parent 09e56b9e18
commit 9fdb340e64
2 changed files with 9 additions and 1 deletions

View File

@ -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)