This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: eclipse status (summary: it looks nice)
- From: Anthony Green <green at redhat dot com>
- To: Mark Wielaard <mark at klomp dot org>
- Cc: java at gcc dot gnu dot org, classpath at gnu dot org, vinny at klomp dot org, ejb at klomp dot org
- Date: 22 Dec 2002 19:32:31 -0800
- Subject: Re: eclipse status (summary: it looks nice)
- References: <1040605813.760.55.camel@elsschot>
On Sun, 2002-12-22 at 17:10, Mark Wielaard wrote:
> There are still some big showstoppers. You will need to disable the
> Garbage Collecter or you will get the attached exception while starting
> up.
Try this...
2002-12-22 Anthony Green <green@redhat.com>
* boehm.cc (_Jv_MarkObj): Mark the protectionDomain of a class.
Index: boehm.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/boehm.cc,v
retrieving revision 1.35
diff -c -r1.35 boehm.cc
*** boehm.cc 6 Dec 2002 23:41:36 -0000 1.35
--- boehm.cc 23 Dec 2002 03:29:07 -0000
***************
*** 203,208 ****
--- 203,210 ----
MAYBE_MARK (p, mark_stack_ptr, mark_stack_limit, c, cBlabel);
p = (ptr_t) c->arrayclass;
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);
#ifdef INTERPRETER
if (_Jv_IsInterpretedClass (c))