summaryrefslogtreecommitdiff
path: root/boehm-gc/misc.c
diff options
context:
space:
mode:
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-04 17:25:07 +0000
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>1999-11-04 17:25:07 +0000
commit9e607692a8b940a3ae85206a2af1bcf34a93a2d7 (patch)
tree1b99b98a7a9709b5c03687d197bd5b4a8e943dcd /boehm-gc/misc.c
parente67d8d45d675032440958987a230aa0090e2ac71 (diff)
downloadgcc-9e607692a8b940a3ae85206a2af1bcf34a93a2d7.tar.gz
* 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30394 138bc75d-0d04-0410-961f-82ee72b054a4
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 348d08aa3b1..5bbaafa87fa 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();
}