Another Bugfix patch for java.io.StreamTokenizer

1999-12-16 Thread Dalibor Topic
Hi, here is a new patch for java.io.StreamTokenizer fixing a bunch of bugs and glitches. Bugs that are fixed with this patch: * when parsing numbers, a '-' alone without following numbers should be an ordinary character, not a string. Reference: Java Language Specification. * when parsing

A small java.io bugfix

2000-01-10 Thread Dalibor Topic
Hi, attached you'll find a patch for current CVS version of Kaffe. This one fixes: * kaffe/libraries/javalib/java/io/BufferedReader.java The default size of the buffered reader did not match Sun's. The JDK 1.2 documentation doesn't say anything about it besides "The buffer size may be

Re: A small java.io bugfix

2000-01-12 Thread Dalibor Topic
--- Dalibor Topic [EMAIL PROTECTED] wrote: Hi, attached you'll find a patch for current CVS version of Kaffe. [SNIP] Appropriate regression tests are in the works. Done. Attached to this e-mail is a unified diff to the current cvs version of Kaffe of the file Makefile.in

Re: Bytecode verifier

2000-01-12 Thread Dalibor Topic
--- Tim Wilkinson [EMAIL PROTECTED] wrote: but before I go off and write a real one I'd like to know whether I'm simply reinventing the wheel - is there an Open Source Java bytecode verifier anywhere in the world? NPL'd : Electrical Fire's Byte Code Verifier

Re: Regression Test failures in current CVS

2000-01-14 Thread Dalibor Topic
--- Alexandre Oliva [EMAIL PROTECTED] wrote: On Jan 14, 2000, Dalibor Topic [EMAIL PROTECTED] wrote: Try to unset it, or to set it to C. I think en_US disregards case. We should probably arrange to set LANG=C in TestScript, if it is set to something else, if this solves the problem

Re: Thread.stop()

2000-05-22 Thread Dalibor Topic
On Mon, 22 May 2000, Jason Baker wrote: Mo DeJong [EMAIL PROTECTED] writes: I was under the impression that methods like Thread.stop() were removed from the JDK or replaced with no-ops. I seem to remember that they were never implemented in Netscape's JVM. The whole concept of stoping

Another Thread.stop() issue

2000-05-31 Thread Dalibor Topic
Hi, I've got a bit of follow-up on Jason's Thread.stop() message. I've found a bug in Kaffe's Thread.stop(Thowable object) method. The following code, legal under Java 1.1, 1.2 and 1.3 exposes it: ---ThreadStop.java--- class Runner extends Thread { public void run() { try{

Kaffe's java compiler needs an update

2000-07-24 Thread Dalibor Topic
the compiler. Unless, of course, there are other issues that prevent us from doing so. Bye, Dalibor Topic __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com

[kaffe] Klasses.jar compilation problems

2000-08-02 Thread Dalibor Topic
/java/lang/Cloneable.java sets KAFFE_VERSION to 106. Unfortunately, when generating the includes, kaffeh sets KAFFE_VERSION to 105. Since Cloneable.java is younger than Klasses.jar, I assume that recompiling Klasses.jar should do the trick. Bye, Dalibor Topic

Re: missing files, while compile Kaffe

2000-08-15 Thread Dalibor Topic
there was a glitch in the Klasses.jar for 1.06 that prevented me from succesfully building kaffe. hope this helps, Dalibor Topic __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com

[kaffe] Slow byte to char conversion

2000-08-16 Thread Dalibor Topic
Hi, I wrote a simple program to show a Java charmap ( something like Encode.java in developers directory). It essentially creates a byte array with size 1, and creates a string with the appropriate Unicode char using the encoding in question for every value a byte can take. When displaying a

Re: [kaffe] Slow byte to char conversion

2000-08-28 Thread Dalibor Topic
Hi Godmar, sorry for the delay, but I was on holidays last week, and away from my mail. Am Sam, 19 Aug 2000 schrieben Sie: From what I understand, and someone correct me if I'm wrong, there shouldn't be any reason not to include the change you suggest - if someone implements it, of course.

Re: [kaffe] Slow byte to char conversion

2000-08-28 Thread Dalibor Topic
Am Mon, 28 Aug 2000 schrieb Artur Biesiadowski: And why exactly default converter could not be cached and same instance used for all conversions ? I think it is stateless class, so it should be safe to enter same object method from various threads with all state on stack. It depends on the

Re: [kaffe] Slow byte to char conversion

2000-08-29 Thread Dalibor Topic
Hi Godmar, Am Die, 29 Aug 2000 schrieb Godmar Back: I was looking at this function in String.java: private static StringBuffer decodeBytes(byte[] bytes, int offset, int len, ByteToCharConverter encoding) { StringBuffer sbuf = new StringBuffer(len);

Re: [kaffe] Slow byte to char conversion

2000-08-30 Thread Dalibor Topic
Am Die, 29 Aug 2000 schrieb Dalibor Topic: Is it not fair to assume that converting n bytes will result in less than or equal to n characters? For most of encodings that I've seen, it is a safe assumption. Unfortunately, I haven't seen 'em all :) I'm suspicious that it's possible

Re: how can i get kaffe through WWW?

2002-01-30 Thread Dalibor Topic
Hi, --- ²ÜÓ¿ [EMAIL PROTECTED] wrote: i want to get kaffe through WWW,which site can i get it? You can get the source through www.kaffe.org. If you click on the AnonCVS link, you'll get to a page with detailed descriptions on how to get the latest bleeding edge source code from the CVS

Re: does kaffe support Java 3D?

2002-02-23 Thread Dalibor Topic

[PATCH] Bug fix for java.util.Vector

2002-02-28 Thread Dalibor Topic
hi, this patch fixes some problems with kaffe's javautilVector implementation I found them while playing around with the Vector examples from Java Class Libraries Second Edition Vol1 Supplement book One javautilVector example from the book is still broken, subList I don't have a fix for that,

[PATCH] Awt fixes

2002-02-28 Thread Dalibor Topic
from Java 12 to Component With the attached fixes, kaffe JDK 131 on i386 linux give almost exactly the same debugging output The only difference is the width height of the InputCanvas JDK 131 picks a different font - the canvas has different dimensions cheers, Dalibor Topic * libraries

[PATCH] java.awt.EventQueue : getNextEvent

2002-03-13 Thread Dalibor Topic
Hi, this small patch changes the behavior of getNextEvent in java.awt.EventQueue. Instead of silently swallowing all InterruptedExceptions, it now lets them propagate up. Reasoning: The API specification says that getNextEvent throws an InterruptedException. Dalibor Topic

[PATCH] java.awt.AWTEvent: toString

2002-03-13 Thread Dalibor Topic
Hi, this patch makes AWTEvent's toString method follow the description from Java Class Libraries, 2nd Edition. It improves its comparability with JDK's output. It also removes some unnecessary static methods from AWTEvent, and adapts EventQueue accordingly. Dalibor Topic * libraries

[PATCH] misc. toString fixes

2002-03-13 Thread Dalibor Topic
Hi, here's yet another small fix for toString, in order to improve comparability of output with JDK. This one adds a toString method in java.awt.image.DirectColorModel, and adapts the existing ones in java.awt.BorderLayout, java.awt.Event and java.util.EventObject. Dalibor Topic

Re: Lock problem

2002-03-17 Thread Dalibor Topic
the above, and I bet you'll get more useful responses from kaffe developers :) have fun, dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: New website

2002-03-17 Thread Dalibor Topic
? There might be web hackers able to assist you with those tasks. cheers, Dalibor Topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: ClassFormatError when running RMI between kaffe1.0.6 and jdk1.2.2

2002-03-17 Thread Dalibor Topic
) at hiSimon.main(hiSimon.java:12) Does anyone has the similar experience or an explanation for this? I would assume that you are being bitten by a bug in the kjc compiler :( Could you give the latest version from CVS a try and tell us if that works? good luck, Dalibor Topic

Zlib in kaffe?

2002-03-18 Thread Dalibor Topic
inflate.[ch] code it)? Or doues it just link to the DLL? cheers, dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

[PATCH] javac kjc 2.1A compilation fix was: Re: VerifyError in PushbackReader

2002-03-18 Thread Dalibor Topic
] java/util/Hashtable.java:201: error:Class Entry is not accessible [JLS 6.6.1] make: *** [lib/stamp] Error 1 the attached patch solves that problem javac compilation problems for me. could you give it a try? cheers, dalibor topic * libraries/javalib/java/util/HashMap.java

Re: Klasses.jar needs to be rebuilt

2002-03-18 Thread Dalibor Topic
unnecessary native implementation without telling Archie to regenerate klasses.jar. will be fixed soon, I hope dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: SPECjvm98

2002-03-19 Thread Dalibor Topic
load will produce rough results most of the time. speaking of conformance: the japhar web site features a mauve results page, which would be nice to have in a similar fashion for kaffe. finally, have fun, dalibor topic _ Do You Yahoo!? Get

Re: Interesting results...

2002-03-20 Thread Dalibor Topic
1.13 dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: Interesting results...

2002-03-21 Thread Dalibor Topic
On Thursday 21 March 2002 07:28, Mason Loring Bliss wrote: On Thu, Mar 21, 2002 at 04:42:13AM +0100, Dalibor Topic wrote: Try to rebuild Klasses.jar using jikes 1.13 I've built Jikes 1.13 and set JIKES = jikes in rebuildLib and Makefile, and this is what I see: Issued 1 semantic warning

Re: Planning for next release (1.0.7)

2002-03-21 Thread Dalibor Topic
. But then, it's a big IF, so having a specific bleeding edge development branch might be useful anyway. Count this answer as undecided, but supportive :) dalibor topic P.S. Dedicating a release to Edouard is a very good idea. _ Do You Yahoo!? Get

Re: SPECjvm98

2002-03-21 Thread Dalibor Topic
On Thursday 21 March 2002 10:24, Jukka Santala wrote: On Tue, 19 Mar 2002, Dalibor Topic wrote: Speaking of benchmarking suites, there is Ashes from the SableVM people. http://www.sable.mcgill.ca/ashes/ I think it's open source, so I'd prefer that. :) Okay, thanks, I'll take a look

Re: Interesting results...

2002-03-21 Thread Dalibor Topic
On Thursday, 21. March 2002 13:24, Andrew Dalgleish wrote: On Thu, Mar 21, 2002 at 05:17:13PM +1100, Andrew Dalgleish wrote: On Thu, Mar 21, 2002 at 04:42:13AM +0100, Dalibor Topic wrote: Try to rebuild Klasses.jar using jikes 1.13 jikes == 1.13 or jikes = 1.13? With jikes == 1.15

Re: Most popular applications?

2002-03-21 Thread Dalibor Topic
on kaffe, since it doesn't need swing or awt. In the long term better browser integration would be nice, thus applets. The rest is just pure showing off. dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: Planning for next release (1.0.7)

2002-03-21 Thread Dalibor Topic
mandrake's kaffe-1.0.6-11mdk source distribution. It seems to apply cleanly against the current version from CVS. Could you give that a try, and tell us if it still works? thanks in advance from someone still stuck with ia32 :) dalibor topic

Re: Most popular applications?

2002-03-21 Thread Dalibor Topic
developed in parallel, but I don't think time really is such a big problem here. If you feel that development on kaffe should proceed faster, you are more than welcome to contribute :) dalibor topic _ Do You Yahoo!? Get your free yahoo.com

Re: Interesting results...

2002-03-21 Thread Dalibor Topic
under kaffe. You need to get the sources from www.dms.at/kopi first. have fun :) On Thu, Mar 21, 2002 at 12:52:08PM +0100, Dalibor Topic wrote: Is kjc a separate project? And, by javac, do you mean Sun's javac? Yes, in that case I meant sun's javac. Do we build kjc.jar as part of Kaffe? I'm

Re: SPECjvm98

2002-03-23 Thread Dalibor Topic
On Friday 22 March 2002 11:27, Jukka Santala wrote: On Thu, 21 Mar 2002, Dalibor Topic wrote: Now you're confusing me, as well. As noted above, modifying code on one platform can affect the performance of other platforms (or other code paths) negatively, and I doubt most developers bother

Re: Interesting results...

2002-03-23 Thread Dalibor Topic
of minutes to it, go for it. dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: Most popular applications?

2002-03-23 Thread Dalibor Topic
into the desktop edition. dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: Jikes 1.15 vs. Verifier

2002-03-23 Thread Dalibor Topic
On Sunday 24 March 2002 04:54, Dalibor Topic wrote: I've attached the patch for class-analyse.c that improves the error message generated when the verification fails. I hope this will make finding that kind of issues with compilers easier. I have now ... * kaffe/kaffevm/code

Benchmarking kaffe (Was: Re: SPECjvm98)

2002-03-25 Thread Dalibor Topic
On Monday 25 March 2002 10:32, Jukka Santala wrote: On Sat, 23 Mar 2002, Dalibor Topic wrote: Do you have any specific benchmarks in mind? Not particularily, but despite the subject-line on this thread, I agree with the view we should probably stay with open-source benchmarks. Ashes looks

Merging PocketLinux-kaffe and kaffe.org-kaffe (Was: Re: Most popular applications)

2002-03-25 Thread Dalibor Topic
classlibrary bugfixes from custom edition should also be reasonably easy, for those parts of the kaffe.org class libraries that don't seem to be actively hacked upon, like java.applet (last functional change on 2000-07-21, my more recent changes were just cleanup). dalibor topic

Re: Benchmarking kaffe (Was: Re: SPECjvm98)

2002-03-26 Thread Dalibor Topic
On Tuesday 26 March 2002 14:07, Jukka Santala wrote: On Mon, 25 Mar 2002, Dalibor Topic wrote: Sticking to a standard environment would just limit the number of people able to contribute results. That's one of the things I'm afraid of. The last thing we want is people upgrading

Re: Answer

2002-04-04 Thread Dalibor Topic
(how's that for a Kaffe port?) did you have to patch anything? I thought that m68k should just work :) dalibor topic _ Do You Yahoo!? Get your free yahoo.com address at http://mail.yahoo.com

Re: Building Kaffe with GTK AWT

2002-04-16 Thread Dalibor Topic
some of them are going to be essentially dead (eg. BISS AWT), but there's no harm in making them available. The main one I'm going to support (for kaffe.org) is going to be the X11 one, and maybe the Win32 one. sounds great. dalibor topic

Re: PATCH: truncated class handling

2002-04-16 Thread Dalibor Topic
experimental it is. On which platforms did you test it? In general, it sounds great. I haven't merged the relevant kaffevm changes from JanosVM yet, so I'd say you go first :) dalibor topic

Re: Building Kaffe with GTK AWT

2002-04-16 Thread Dalibor Topic
be a generic AWT and then to write a kind of frontend which maps the primitive graphic operations. But I guess this wouldn't be as easy as it sounds, especially when it comes to performance. I thought the AWT peers had that purpose anyway? Shouldn't writing a frambuffer peer be enough? dalibor topic