eclipse status (summary: it looks nice)
Anthony Green
green@redhat.com
Sun Dec 22 19:31:00 GMT 2002
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))
More information about the Java
mailing list