RE: VMClassLoader

2003-09-25 Thread Jeroen Frijters
Tom Tromey wrote: I think the reference VMClassLoader is subtly incorrect. Is anybody using this code as-is? I am (in IKVM.NET). In particular, I think VMClassLoader.getSystemClassLoader must try to use the default system class loader to load the one specified in the

Re: [kaffe] Re: dotnet platform support / gnu config.sub (long)

2003-09-25 Thread Stephen Crawley
[EMAIL PROTECTED] said: Sun has a lot of lawyers, and they've been pretty aggressive than most about staking their claims on the linguistic turf (so they can sell it off). That's a rather twisted interpretation of Sun's use of trademarks, IMO. Another way of interpreting this is that Sun is

Re: dotnet platform support / gnu config.sub (long)

2003-09-25 Thread Guido Draheim
Dalibor Topic wrote: Guido Draheim wrote: Dalibor Topic wrote: Guido Draheim wrote: For the java machine, the term `jvm` is used universally. I do not remember there were any dependency on pointer lengths, it runs in managed mode always. JVM, JDK, Java, etc. are all trade marks with

Task list

2003-09-25 Thread Sascha Brawer
Hi all, I think we should have a page on the Classpath site, listing small tasks that volunteers could pick. The idea is that a single project would not take very long to complete, so it would be attractive for people who are not regular classpath contributors. Here's a (rather random) proposal

(no subject)

2003-09-25 Thread Andrew Haley
Stephen Crawley writes: [EMAIL PROTECTED] said: Sun has a lot of lawyers, and they've been pretty aggressive than most about staking their claims on the linguistic turf (so they can sell it off). That's a rather twisted interpretation of Sun's use of trademarks, IMO. Another

Re: Classpath - javax.sound implementation - which library?

2003-09-25 Thread Mark Wielaard
Hi, On Wed, 2003-09-24 at 19:19, Dalibor Topic wrote: Ricky Clarkson wrote: I've been looking at tritonus, and its mixer capabilities are ALSA-specific (hence Linux-specific). Is there some other library that would be viable for Classpath, such as SDL, that would be more portable?

Re: NYIException

2003-09-25 Thread Sascha Brawer
Ingo Prötel [EMAIL PROTECTED] wrote on Tue, 23 Sep 2003 16:56:23 +0200: I would like to again propose a standard NYIException to be used in Classpath. [...] package gnu.org.classpath; Are you sure about this package name? public class NYIException extends UnsupportedOperationException I'd

Re: NYIException

2003-09-25 Thread Michael Koch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Am Donnerstag, 25. September 2003 15:43 schrieb Sascha Brawer: Ingo Prötel [EMAIL PROTECTED] wrote on Tue, 23 Sep 2003 16:56:23 +0200: I would like to again propose a standard NYIException to be used in Classpath. [...] package

Re: NYIException

2003-09-25 Thread Ingo Prötel
Hi Sascha, Sascha Brawer wrote: Ingo Prötel [EMAIL PROTECTED] wrote on Tue, 23 Sep 2003 16:56:23 +0200: I would like to again propose a standard NYIException to be used in Classpath. [...] package gnu.org.classpath; Are you sure about this package name? This should be package

Re: NYIException

2003-09-25 Thread Arnaud Vandyck
On Thu, 25 Sep 2003 15:43:10 +0200 Sascha Brawer [EMAIL PROTECTED] wrote: I'd favor NotYetImplementedException. Class names tend to be very verbose in Java, and IMHO it would make sense to follow that style. ... even if NY is exceptionnel! ;) -- Arnaud Vandyck, STE fi, ULg Formateur

Re: NYIException

2003-09-25 Thread Etienne Gagnon
Ingo Prötel wrote: We can certainly do this. I also appreciate if an exception name already describes the problem. But I also must caution against using too long names. Especially for classes with inner classes. Such Classes result in very long class-filenames. Some Systems have hard limits on

Re: GNU Classpath 0.06 created

2003-09-25 Thread Mark Wielaard
Hi, On Sat, 2003-08-23 at 19:51, Per Bothner wrote: If you've created a cvs tag, and given it a real version number, I'd call it a release, even if it's not a 1.0 relase. alpha.gnu.org has outlived its usefulness (evidenced by the fact that it is little used) now that alpha code is available

[patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread Stuart Ballard
Stuart Ballard wrote: The HashMap putAll and putAllInternal (called from constructor) methods use size() to get the size of the map to be added, and then iterate over the iterator that many times to add elements. Instead, they should call hasNext() on the iterator. Attached is a patch to

[really patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread Stuart Ballard
Bah, forgot the attachment. -- Stuart Ballard, Senior Web Developer FASTNET - Web Solutions (215) 283-2300, ext. 126 www.fast.net Index: HashMap.java === RCS file: /cvsroot/classpath/classpath/java/util/HashMap.java,v retrieving

Re: [patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread Dalibor Topic
Stuart Ballard wrote: Stuart Ballard wrote: The HashMap putAll and putAllInternal (called from constructor) methods use size() to get the size of the map to be added, and then iterate over the iterator that many times to add elements. Instead, they should call hasNext() on the iterator.

Re: [patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread Stuart Ballard
Dalibor Topic wrote: Not attached here ;) I already resent it but just in case that didn't make it through, I've re-attached it here. Could you give it spin on kaffe from CVS? It uses Classpath's collection classes. It applies cleanly to Kaffe CVS (of course) and passes all 144 make check

Re: [patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread Brian Jones
Stuart Ballard [EMAIL PROTECTED] writes: Dalibor Topic wrote: Not attached here ;) I already resent it but just in case that didn't make it through, I've re-attached it here. Could you give it spin on kaffe from CVS? It uses Classpath's collection classes. It applies cleanly to

Re: NYIException

2003-09-25 Thread Brian Jones
Ingo Prtel [EMAIL PROTECTED] writes: Hi Sascha, Sascha Brawer wrote: Ingo Prtel [EMAIL PROTECTED] wrote on Tue, 23 Sep 2003 16:56:23 +0200: I would like to again propose a standard NYIException to be used in Classpath. [...] package gnu.org.classpath; Are you sure about this

Re: Classpath - javax.sound implementation - which library?

2003-09-25 Thread Brian Jones
Mark Wielaard [EMAIL PROTECTED] writes: If we want to distribute it as an integral part of GNU Classpath then making sure that all code is assigned to the FSF is the preferred way to go. But there are other ways we could package things. So the best course of action would seem to be to have

RE: [patch] Re: HashMap putAll/putAllInternal bug

2003-09-25 Thread David Holmes
Brian Jones wrote: Wondering how Sun's impl makes a copy of the given Collection while avoiding copying an object being modified in another thread. Anyone know? I think the Iterators are supposed to throw exceptions when this occurs too. Most collections are not defined as being

Re: Kissme and Classpath CVS

2003-09-25 Thread Stephen Crawley
A few weeks ago, I wrote: The Kissme in CVS and in the Kissme 0.0.31 release are currently incompatible with the latest Classpath in CVS ... Compatibility should be restored in a day or so ... Last night I fixed the last major bug and checked in a large number of changes to Kissme. I

Re: [kaffe] Kaffe and gjdoc

2003-09-25 Thread Dalibor Topic
Arnaud Vandyck wrote: Hi everybody, [I do Cc: classpath because I'm not on cp-tools but someone can maybe forward] The good news: -- kaffe can run ant and build something (but maybe everyone already know! ;)) The bad news: - gjdoc from cvs is broken because of

Re: [kaffe] Re: dotnet platform support / gnu config.sub (long)

2003-09-25 Thread Andrew Haley
Stephen Crawley writes: [EMAIL PROTECTED] said: Sun has a lot of lawyers, and they've been pretty aggressive than most about staking their claims on the linguistic turf (so they can sell it off). That's a rather twisted interpretation of Sun's use of trademarks, IMO. Another