This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: McKoi db error
- From: Tom Tromey <tromey at redhat dot com>
- To: Geert Bevin <gbevin at uwyn dot com>
- Cc: java at gcc dot gnu dot org
- Date: 17 Mar 2003 14:54:55 -0700
- Subject: Re: McKoi db error
- References: <3E76356E.3020602@uwyn.com>
- Reply-to: tromey at redhat dot com
>>>>> "Geert" == Geert Bevin <gbevin at uwyn dot com> writes:
Geert> I tried building McKoi db on gcj 3.3 cvs. With some minor fixes
Geert> I get it to compile and run a simple testcase if the database
Geert> files are already present.
I don't know what the McKoi db is, but cool.
Geert> However, when I write a test class which is
Geert> completely embedded and creates its own database files, I get a weird
Geert> error. I don't know much about McKoi nor about gcj since I'm currently
Geert> evaluation solutions for an upcoming project. I also don't know how
Geert> much info I need to post to find a solution, so I just start by
Geert> attaching the error messages. Does anyone have any idea how to solve
Geert> this? It seems to me that there's something going awry in gcj's io
Geert> implementation. The example work perfectly with other jvms.
The error message in question comes from java.io.ObjectInputStream.
Unfortunately for you, our serialization support isn't as well-tested
as other parts of libgcj. So you've probably run into a serialization
bug of some kind.
The only real option is to debug the library and find out what has
gone wrong.
Tom