[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: eclipse status (summary: it looks nice)
From: |
Anthony Green |
Subject: |
Re: eclipse status (summary: it looks nice) |
Date: |
22 Dec 2002 19:32:31 -0800 |
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 <address@hidden>
* 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))