[kaffe] Kaffe CVS: kaffe dalibor

2002-06-10 Thread Kaffe CVS
CVSROOT:/cvs/kaffe Module name:kaffe Changes by: dalibor 02/06/10 15:15:53 Modified files: . : Tag: Release_1_0_7_Branch ChangeLog FAQ: Tag: Release_1_0_7_Branch FAQ.Known-Bugs Log message: added FileInputStream constructor bug to known

Re: [kaffe] Bug in FileInputStream

2002-06-10 Thread Dalibor Topic
--- Patrick Tullmann <[EMAIL PROTECTED]> wrote: > Jukka wrote: > I think the way the libraries have been written to > this point, is to > follow the most recent available spec as much as > possible. I think Yes, as far as I'm concerned ;) > trying to support different versions of the JDK spec >

Re: [kaffe] Bug in FileInputStream

2002-06-10 Thread Dalibor Topic
--- Jukka Santala <[EMAIL PROTECTED]> wrote: > On Sun, 9 Jun 2002, Patrick Tullmann wrote: > > I fixed this, and some related problems on > FileOutputStream (its > > constructors were throwing IOException when they > may only throw > > FileNotFoundException, and a 1.4 constructor > taking (File,

Re: [kaffe] Bug in FileInputStream

2002-06-10 Thread Patrick Tullmann
Jukka wrote: > JDK 1.1 API has the constructors only throwing IOException, though; > since Kaffe doesn't support full Java2, it is more likely to be ran > with JDK 1.1 applications. Actually, I didn't change the exception signature of the constructors. There was already code that mapped any IOExc

Re: [kaffe] Memory Management Subsystem

2002-06-10 Thread Patrick Tullmann
Hi Barry, > I'm working with a research group at the University of North Texas > and I've been tinkering around with Kaffe's gc/allocator. The main > goal is to create a pluggable environment for the allocator and the > gc so that we can collect data on the behavior of various > gc/allocator algo

[kaffe] virtual method lookup table

2002-06-10 Thread Matt Simpson
What is the structure used to represent the vitrual method lookup table, and what file is it located in. _ Chat with friends online, try MSN Messenger: http://messenger.msn.com ___ kaf

Re: [kaffe] Bug in FileInputStream

2002-06-10 Thread Dalibor Topic
hi Patrick, --- Patrick Tullmann <[EMAIL PROTECTED]> wrote: > This strikes me as something that Mauve should have > tests for (its > more of a class library problem than a VM-specific > problem). Can > anyone who has played with Mauve look and see if > this is a simple > addition to that test su

[kaffe] Memory Management Subsystem

2002-06-10 Thread rougeau
Hi, I'm working with a research group at the University of North Texas and I've been tinkering around with Kaffe's gc/allocator. The main goal is to create a pluggable environment for the allocator and the gc so that we can collect data on the behavior of various gc/allocator algorithm combinati

Re: [kaffe] Bug in FileInputStream

2002-06-10 Thread Jukka Santala
On Sun, 9 Jun 2002, Patrick Tullmann wrote: > I fixed this, and some related problems on FileOutputStream (its > constructors were throwing IOException when they may only throw > FileNotFoundException, and a 1.4 constructor taking (File, boolean) > was missing). I expanded your test case a bit, t