This is the mail archive of the java-patches@gcc.gnu.org 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]
Other format: [Raw text]

FYI: Patch: boehm.cc


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


I hate to say this but I broke libgcj build by forgetting to commit a 
simple fix. I fixed it now.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/zu6zWSOgCCdjSDsRAqGEAJ4ncMPVwknay9R8C29eCOz25iCxHgCbBH4B
tcmGT1+UqVxaG8GdXNeq3MQ=
=GQEc
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2413
diff -u -b -B -r1.2413 ChangeLog
--- ChangeLog	3 Dec 2003 21:26:58 -0000	1.2413
+++ ChangeLog	4 Dec 2003 07:13:14 -0000
@@ -1,3 +1,7 @@
+2003-12-04  Michael Koch  <konqueror@gmx.de>
+
+	* boehm.cc (_Jv_MarkObj): Access hack_signers field.
+
 2003-12-03  Michael Koch  <konqueror@gmx.de>
 
 	* java/lang/Class.h (hack_signers): Renamed signers to hack_signers.
Index: boehm.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/boehm.cc,v
retrieving revision 1.41
diff -u -b -B -r1.41 boehm.cc
--- boehm.cc	9 Oct 2003 16:24:54 -0000	1.41
+++ boehm.cc	4 Dec 2003 07:13:14 -0000
@@ -206,7 +206,7 @@
       MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, cDlabel);
       p = (ptr_t) c->protectionDomain;
       MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, cPlabel);
-      p = (ptr_t) c->signers;
+      p = (ptr_t) c->hack_signers;
       MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, cSlabel);
 
 #ifdef INTERPRETER

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