From: tromey Date: Fri, 30 Apr 1999 16:00:28 +0000 (+0000) Subject: * linux_threads.c: Don't reference __pthread_initial_thread_bos. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2607457d678b6b1ed96331afac2f52edaf84563a;p=gc * linux_threads.c: Don't reference __pthread_initial_thread_bos. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26711 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/ChangeLog b/ChangeLog index 6845bb15..405df171 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +1999-04-30 Tom Tromey + + * linux_threads.c: Don't reference __pthread_initial_thread_bos. + 1999-04-26 Tom Tromey * dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as diff --git a/linux_threads.c b/linux_threads.c index 12e71cea..f83e1dd3 100644 --- a/linux_threads.c +++ b/linux_threads.c @@ -118,8 +118,13 @@ package, we generate a dummy reference to `__pthread_initial_thread_bos', which is a symbol defined in LinuxThreads, but (hopefully) not in other thread packages. */ +#if 0 +/* Note: on Caldera OpenLinux, this symbols is `local' in the + libpthread.so (but not in libpthread.a). We don't really need + this, so we just comment it out. */ extern char * __pthread_initial_thread_bos; char **dummy_var_to_force_linux_threads = &__pthread_initial_thread_bos; +#endif #define LINUX_THREADS_STACK_SIZE (2 * 1024 * 1024)