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: quick-threads -vs- boehm-config


Our quick_threads.c referenced boehm-config.h, which I just removed.
This patch fixes that oversight.

Lately I've been thinking we should just remove the qthreads support
from our copy of the GC.  It's unlikely anybody else will want our
qthreads package (it is relatively losing), and we haven't released it
anyway.  So this represents one divergence from the upstream source
which we currently maintain to no end on sourceware.

Anybody care if I nuke it?

1999-11-02  Tom Tromey  <tromey@cygnus.com>

	* quick_threads.c: Include gcconfig.h, not boehm-config.h.

Tom

Index: quick_threads.c
===================================================================
RCS file: /cvs/java/libgcj/boehm-gc/quick_threads.c,v
retrieving revision 1.2
diff -u -r1.2 quick_threads.c
--- quick_threads.c	1999/06/30 12:44:20	1.2
+++ quick_threads.c	1999/11/03 01:23:11
@@ -3,7 +3,7 @@
  * Copyright (c) 1998, 1999 Cygnus Solutions.
  */
 
-#include "boehm-config.h"
+#include "gcconfig.h"
 
 #ifdef QUICK_THREADS
 

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