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  <[EMAIL PROTECTED]>

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



_______________________________________________
Classpath mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/classpath

Reply via email to