From d05dafe2fc23137f8decd641d82d23f45e16281c Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Sat, 27 Dec 2003 23:30:50 +0000 Subject: Fix a long-standing bug with pthreads. A couple of linuxthreads files were including libc-lock.h which had a bunch of weak pragmas. Also, uClibc supplied a number of no-op weak thread functions even though many weren't needed. This combined result was that sometimes the functional versions of thread functions in pthread would not override the weaks in libc. While fixing this, I also prepended double-underscore to all necessary weak thread funcs in uClibc, and removed all unused weaks. I did a test build, but haven't tested this since these changes are a backport from my working tree. I did test the changes there and no longer need to explicitly add -lpthread in the perl build for perl to pass its thread self tests. --- include/pthread.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include') diff --git a/include/pthread.h b/include/pthread.h index 2b7b79834..846b9cc93 100644 --- a/include/pthread.h +++ b/include/pthread.h @@ -24,6 +24,9 @@ #include #include #include +#ifdef _LIBC +#include +#endif __BEGIN_DECLS -- cgit v1.2.3