diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-26 14:15:05 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-04-26 14:15:05 +0000 |
commit | 41e6be0dbfb73bfa610c4a62cb2b3f33514dd46b (patch) | |
tree | 419bf5af5475ca11cc989d4c67ec026cfeb18980 /boehm-gc/misc.c | |
parent | bfc04c7b1c5c42e6645325bfdfb883afd5efefb9 (diff) | |
download | gcc-41e6be0dbfb73bfa610c4a62cb2b3f33514dd46b.tar.gz |
libtoolized GC library. See ChangeLog for details.
Also a couple bug fixes:
* dyn_load.c (GC_FirstDLOpenedLinkMap): Declare _DYNAMIC as
`weak'.
* misc.c (GC_init_inner): If QUICK_THREADS defined, compute
GC_stackbottom.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26650 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'boehm-gc/misc.c')
-rw-r--r-- | boehm-gc/misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c index 94e19576323..72c87b0802c 100644 --- a/boehm-gc/misc.c +++ b/boehm-gc/misc.c @@ -445,7 +445,8 @@ void GC_init_inner() GC_thr_init(); # endif # if !defined(THREADS) || defined(SOLARIS_THREADS) || defined(WIN32_THREADS) \ - || defined(IRIX_THREADS) || defined(LINUX_THREADS) + || defined(IRIX_THREADS) || defined(LINUX_THREADS) \ + || defined (QUICK_THREADS) if (GC_stackbottom == 0) { GC_stackbottom = GC_get_stack_base(); } |