This is the mail archive of the java-patches@sourceware.cygnus.com mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Patch: Linux PPC patch for GC


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)) {

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]