From aaacde11f2e814814fdd19dfb683e76f1dede4d5 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Mon, 12 Jul 2021 18:43:32 +0200 Subject: Reduce pollution due to dynamic PTHREAD_STACK_MIN used to be a header file with no declarations. GCC's libgomp includes it in a #pragma GCC visibility hidden block. Including from (indirectly) declares everything in with hidden visibility, resulting in linker failures. This commit avoids C declarations in assembler mode and only declares __sysconf in (and not the entire contents of ). The __sysconf symbol is already part of the ABI. PTHREAD_STACK_MIN is no longer defined for __USE_DYNAMIC_STACK_SIZE && __ASSEMBLER__ because there is no possible definition. Additionally, PTHREAD_STACK_MIN is now defined by for __USE_MISC because this is what developers expect based on the macro name. It also helps to avoid libgomp linker failures in GCC because libgomp includes before its visibility hacks. Reviewed-by: Carlos O'Donell --- sysdeps/nptl/pthread.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'sysdeps/nptl') diff --git a/sysdeps/nptl/pthread.h b/sysdeps/nptl/pthread.h index 52e2ead..f1b7f2b 100644 --- a/sysdeps/nptl/pthread.h +++ b/sysdeps/nptl/pthread.h @@ -29,7 +29,9 @@ #include #include #include - +#ifdef __USE_MISC +# include +#endif /* Detach state. */ enum -- cgit v1.1