diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-30 16:00:28 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-30 16:00:28 +0000 |
commit | 0ee00e0364a9274d870c3266fb0370fb13957346 (patch) | |
tree | 3796d83005216ad6930488828fc37f69c66e1c1f /boehm-gc/linux_threads.c | |
parent | ccefda8d8b3806b852a9554baa95d19046bb51d9 (diff) | |
download | gcc-0ee00e0364a9274d870c3266fb0370fb13957346.tar.gz |
* 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
Diffstat (limited to 'boehm-gc/linux_threads.c')
-rw-r--r-- | boehm-gc/linux_threads.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/boehm-gc/linux_threads.c b/boehm-gc/linux_threads.c index 12e71cea1fe..f83e1dd37b2 100644 --- a/boehm-gc/linux_threads.c +++ b/boehm-gc/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) |