aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/misc.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@cygnus.com>1999-11-04 17:25:07 +0000
committerTom Tromey <tromey@gcc.gnu.org>1999-11-04 17:25:07 +0000
commit81976f93fe3280b1514ad55f582fd6a6cd33f9e3 (patch)
tree1b99b98a7a9709b5c03687d197bd5b4a8e943dcd /boehm-gc/misc.c
parent7f80fbe501cd0e4d8f63078f5308f30d3eabd460 (diff)
downloadgcc-81976f93fe3280b1514ad55f582fd6a6cd33f9e3.zip
gcc-81976f93fe3280b1514ad55f582fd6a6cd33f9e3.tar.gz
gcc-81976f93fe3280b1514ad55f582fd6a6cd33f9e3.tar.bz2
configure: Rebuilt.
* configure: Rebuilt. * configure.in: Removed qt threads case. * dyn_load.c: Don't mention QUICK_THREADS. * os_dep.c: Don't mention QUICK_THREADS. * misc.c: Don't mention QUICK_THREADS. * gcconfig.h: Don't mention QUICK_THREADS. * gc_priv.h: Removed QUICK_THREADS code. * quick_threads.c: Removed. From-SVN: r30394
Diffstat (limited to 'boehm-gc/misc.c')
-rw-r--r--boehm-gc/misc.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/boehm-gc/misc.c b/boehm-gc/misc.c
index 348d08a..5bbaafa 100644
--- a/boehm-gc/misc.c
+++ b/boehm-gc/misc.c
@@ -49,11 +49,7 @@
# if defined(HPUX_THREADS)
pthread_mutex_t GC_allocate_ml = PTHREAD_MUTEX_INITIALIZER;
# else
-# if defined(QUICK_THREADS)
- /* Nothing */
-# else
--> declare allocator lock here
-# endif
# endif
# endif
# endif
@@ -469,7 +465,7 @@ void GC_init_inner()
# endif
# if !defined(THREADS) || defined(SOLARIS_THREADS) || defined(WIN32_THREADS) \
|| defined(IRIX_THREADS) || defined(LINUX_THREADS) \
- || defined(HPUX_THREADS) || defined(QUICK_THREADS)
+ || defined(HPUX_THREADS)
if (GC_stackbottom == 0) {
GC_stackbottom = GC_get_stack_base();
}