This is the mail archive of the java@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]

Re: eclipse status (summary: it looks nice)


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


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