This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: Linux PPC patch for GC
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: Patch: Linux PPC patch for GC
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 04 Nov 1999 11:57:15 -0700
- Reply-To: tromey at cygnus dot com
I'm committing this change. This removes an old PPC change that got
merged into the new GC import. This old change is no longer required.
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.
Tom
Index: misc.c
===================================================================
RCS file: /cvs/java/libgcj/boehm-gc/misc.c,v
retrieving revision 1.7
diff -u -r1.7 misc.c
--- misc.c 1999/11/04 17:25:07 1.7
+++ misc.c 1999/11/04 18:51:16
@@ -408,10 +408,6 @@
GC_bool GC_is_initialized = FALSE;
-#if defined(SOLARIS_THREADS) || defined(IRIX_THREADS)
- extern void GC_thr_init();
-#endif
-
void GC_init()
{
DCL_LOCK_STATE;
@@ -447,9 +443,6 @@
# ifdef MSWIN32
GC_init_win32();
# endif
-# if defined(LINUX) && defined(POWERPC)
- GC_init_linuxppc();
-# endif
# if defined(LINUX) && \
(defined(POWERPC) || defined(ALPHA) || defined(SPARC) || defined(IA64))
GC_init_linux_data_start();
@@ -467,7 +460,7 @@
|| defined(IRIX_THREADS) || defined(LINUX_THREADS) \
|| defined(HPUX_THREADS)
if (GC_stackbottom == 0) {
- GC_stackbottom = GC_get_stack_base();
+ GC_stackbottom = GC_get_stack_base();
}
# endif
if (sizeof (ptr_t) != sizeof(word)) {