Commit a57e0ef5 by Tom Tromey Committed by Tom Tromey

misc.c (GC_init_inner): Don't call GC_init_linuxppc().

	* misc.c (GC_init_inner): Don't call GC_init_linuxppc().
	(GC_thr_init): Don't declare.

From-SVN: r30395
parent 81976f93
1999-11-04 Tom Tromey <tromey@cygnus.com> 1999-11-04 Tom Tromey <tromey@cygnus.com>
* misc.c (GC_init_inner): Don't call GC_init_linuxppc().
(GC_thr_init): Don't declare.
* configure: Rebuilt. * configure: Rebuilt.
* configure.in: Removed qt threads case. * configure.in: Removed qt threads case.
* dyn_load.c: Don't mention QUICK_THREADS. * dyn_load.c: Don't mention QUICK_THREADS.
......
...@@ -408,10 +408,6 @@ size_t GC_get_bytes_since_gc GC_PROTO(()) ...@@ -408,10 +408,6 @@ size_t GC_get_bytes_since_gc GC_PROTO(())
GC_bool GC_is_initialized = FALSE; GC_bool GC_is_initialized = FALSE;
#if defined(SOLARIS_THREADS) || defined(IRIX_THREADS)
extern void GC_thr_init();
#endif
void GC_init() void GC_init()
{ {
DCL_LOCK_STATE; DCL_LOCK_STATE;
...@@ -447,9 +443,6 @@ void GC_init_inner() ...@@ -447,9 +443,6 @@ void GC_init_inner()
# ifdef MSWIN32 # ifdef MSWIN32
GC_init_win32(); GC_init_win32();
# endif # endif
# if defined(LINUX) && defined(POWERPC)
GC_init_linuxppc();
# endif
# if defined(LINUX) && \ # if defined(LINUX) && \
(defined(POWERPC) || defined(ALPHA) || defined(SPARC) || defined(IA64)) (defined(POWERPC) || defined(ALPHA) || defined(SPARC) || defined(IA64))
GC_init_linux_data_start(); GC_init_linux_data_start();
...@@ -467,7 +460,7 @@ void GC_init_inner() ...@@ -467,7 +460,7 @@ void GC_init_inner()
|| defined(IRIX_THREADS) || defined(LINUX_THREADS) \ || defined(IRIX_THREADS) || defined(LINUX_THREADS) \
|| defined(HPUX_THREADS) || defined(HPUX_THREADS)
if (GC_stackbottom == 0) { if (GC_stackbottom == 0) {
GC_stackbottom = GC_get_stack_base(); GC_stackbottom = GC_get_stack_base();
} }
# endif # endif
if (sizeof (ptr_t) != sizeof(word)) { if (sizeof (ptr_t) != sizeof(word)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment