Re: [cp-patches] Re: FYI: Few compilation fixes

2006-12-20 Thread Mark Wielaard
Hi, On Tue, 2006-12-19 at 11:26 -0700, Tom Tromey wrote: Mario == Mario Torre [EMAIL PROTECTED] writes: I spoke too soon, sorry :( Mariofor (p = 0; Mario p data.length data[p].getType() == ElementSpec.EndTagType; Mario - p++); Mario +

Re: [cp-patches] Re: FYI: Few compilation fixes

2006-12-20 Thread Mario Torre
Il giorno mer, 20/12/2006 alle 11.20 +, Andrew Haley ha scritto: Ultimately, we have to answer a question: do we follow our own style guidelines, or those made up by the author of a compiler? Some of these changes make the code worse, or at least harder to understand. Andrew. I agree.

[cp-patches] Re: RFC: cvs rm'ing some ancient files

2006-12-20 Thread Audrius Meskauskas
Now, when Mauve is much more convenient to use than it was before, these tests surely can be removed. The most of them have the matching tests in Mauve. Audrius.

[cp-patches] RFC: Few compilation fixes (2)

2006-12-20 Thread Mario Torre
Il giorno mer, 20/12/2006 alle 12.50 +0100, Mario Torre ha scritto: I agree. Infact I was a bit afraid of such change, the continue indeed looks weird. This patch fixes that. I'm still investigating how to make eclipse happy. Please note this line: -if((c = lookup[(int) (b 0xFF)])

Re: [cp-patches] RFC: Few compilation fixes (2)

2006-12-20 Thread Mario Torre
Il giorno gio, 21/12/2006 alle 00.30 +0100, Mario Torre ha scritto: Il giorno mer, 20/12/2006 alle 12.50 +0100, Mario Torre ha scritto: I agree. Infact I was a bit afraid of such change, the continue indeed looks weird. This patch fixes that. I'm still investigating how to make eclipse

[cp-testresults] FAIL: regressions for mauve-jamvm on Wed Dec 20 12:49:18 UTC 2006

2006-12-20 Thread cpdev
Baseline from: Sun Dec 17 06:46:02 UTC 2006 Regressions: FAIL: java.lang.Thread.sleep Totals: PASS: 2900 XPASS: 0 FAIL: 201 XFAIL: 0 ___ Classpath-testresults mailing list Classpath-testresults@gnu.org

[cp-testresults] FAIL: regressions for mauve-jamvm on Wed Dec 20 18:14:53 UTC 2006

2006-12-20 Thread cpdev
Baseline from: Sun Dec 17 06:46:02 UTC 2006 Regressions: FAIL: java.lang.Thread.sleep FAIL: javax.swing.JComboBox.ComboRobot FAIL: javax.swing.JTable.TableRobot Totals: PASS: 2898 XPASS: 0 FAIL: 203 XFAIL: 0 ___ Classpath-testresults mailing list

Re: [cp-patches] FYI: Add Enum.finalize()

2006-12-20 Thread Mark Wielaard
Hi (moved to main list since I think this might be interesting for runtime hackers), On Tue, 2006-12-19 at 00:37 +, Andrew John Hughes wrote: This adds the finalize() method added to Enum in 1.6. Should fix a few JAPI errors... Changelog: 2006-12-19 Andrew John Hughes [EMAIL

FOSDEM! Classpath/DevJam/OpenJDK

2006-12-20 Thread Mark Wielaard
Hi, On Tue, 2006-12-19 at 09:19 +, Andrew Haley wrote: Petter Reinholdtsen writes: OK, we are rolling with this. The next DevJam will be during FOSDEM, 24th and 25th February 2007 in Brussels, Belgium. Those of you who are interested in joining need to put your name on

Re: [cp-patches] FYI: Add Enum.finalize()

2006-12-20 Thread Christian Thalinger
On Wed, Dec 20, 2006 at 09:34:29AM +0100, Mark Wielaard wrote: Hi (moved to main list since I think this might be interesting for runtime hackers), On Tue, 2006-12-19 at 00:37 +, Andrew John Hughes wrote: This adds the finalize() method added to Enum in 1.6. Should fix a few JAPI

javac warnings

2006-12-20 Thread Christian Thalinger
Hi! If anybody is interested in, this is the only warning coming up with Sun's javac (30 warnings): ../java/lang/Class.java:1161: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for

MIDPath 0.1-alpha1 released

2006-12-20 Thread Guillaume legris
MIDPath 0.1-alpha1 released. MIDPath provides a MIDP2 implementation on top of the SDL and SDLJava libraries. It targets free JVMs working with GNU Classpath: Cacao, Kaffe, JamVM. The code is based on phoneME, the free implementation of MIDP2 from Sun. MIDPath is released under the GPL.

RE: [cp-patches] FYI: Add Enum.finalize()

2006-12-20 Thread Jeroen Frijters
Mark Wielaard wrote: Interesting. Even though Enums should never be initialized by hand this is something a garbage collector should be aware of. Do garbage collectors already handle empty finalize() methods as if there was no finalizer? Good ones do :-) (I know that HotSpot does and IKVM