Re: nio package and asynchronous io

2002-02-06 Thread R.S. Veldema
I'd be happy to contribute stuff (see earlier ps remark about swing stuff) And yup, dislike typing docs. but I guess that's been noticed. Ps, yup, just yesterday people came by submitting compiler construction assignments for me to test who were also working on the dot-gnu thing ! R. Mark

Re: nio package and asynchronous io

2002-02-05 Thread Nic Ferrier
Golly. That's further than I got. I'd be very interested in seeing it even if no one else is. Nic ___ Classpath mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/classpath

Re: nio package and asynchronous io

2002-02-05 Thread R.S. Veldema
Nic Ferrier wrote: here it is: http://www.cs.vu.nl/~rveldema/parcc1.tgz unpack and see javalibs/java/nio, javalibs/manta/runtime/ the native side is in runtime/shared/io.c If you actually want to try it out, download the release from http://www.cs.vu.nl/~rveldema/ and unpack the file

Re: nio package and asynchronous io

2002-02-05 Thread Mark Wielaard
Hi, On Tue, 2002-02-05 at 14:26, R.S. Veldema wrote: Ps, to any of the gnu people listening: a good while a go I submitted a copyright assignment for my basic swing implementation and never heard anything since then (we are talking months now...). Brian are you tracking this? I have no

Re: nio package and asynchronous io

2002-02-05 Thread Mark Wielaard
Hi, On Tue, 2002-02-05 at 14:53, R.S. Veldema wrote: here it is: http://www.cs.vu.nl/~rveldema/parcc1.tgz unpack and see javalibs/java/nio, javalibs/manta/runtime/ the native side is in runtime/shared/io.c O boy! You got most of the infrastructure already done. It does need some

Re: nio package and asynchronous io

2002-02-05 Thread Tom Tromey
Mark == Mark Wielaard [EMAIL PROTECTED] writes: On Tue, 2002-02-05 at 14:26, R.S. Veldema wrote: Ps, to any of the gnu people listening: a good while a go I submitted a copyright assignment for my basic swing implementation and never heard anything since then (we are talking months

Re: nio package and asynchronous io

2002-02-05 Thread Brian Jones
Tom Tromey [EMAIL PROTECTED] writes: Mark == Mark Wielaard [EMAIL PROTECTED] writes: On Tue, 2002-02-05 at 14:26, R.S. Veldema wrote: Ps, to any of the gnu people listening: a good while a go I submitted a copyright assignment for my basic swing implementation and never heard

Re: nio package and asynchronous io

2002-02-05 Thread Yann Secq
R.S. Veldema wrote : Ps, to any of the gnu people listening: a good while a go I submitted a copyright assignment for my basic swing implementation and never heard anything since then (we are talking months now...). Once again this system of copyright assignment slows people and project. I

nio package and asynchronous io

2002-02-04 Thread Jakob Praher
hi all, do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this subject. bye Jakob ___ Classpath mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/classpath

Re: nio package and asynchronous io

2002-02-04 Thread Nic Ferrier
Jakob Praher [EMAIL PROTECTED] writes: hi all, do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this subject. I have done a little bit of work for GCJ with this. Unfortunately I haven't had any time recently to

Re: nio package and asynchronous io

2002-02-04 Thread Jakob Praher
Am Mon, 2002-02-04 um 18.39 schrieb Nic Ferrier: Jakob Praher [EMAIL PROTECTED] writes: hi all, do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this subject. I have done a little bit of work for GCJ

Re: nio package and asynchronous io

2002-02-04 Thread Nic Ferrier
Jakob Praher [EMAIL PROTECTED] writes: Am Mon, 2002-02-04 um 18.39 schrieb Nic Ferrier: Jakob Praher [EMAIL PROTECTED] writes: hi all, do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this

Re: nio package and asynchronous io

2002-02-04 Thread Mark Wielaard
Hi, On Mon, 2002-02-04 at 18:27, Jakob Praher wrote: Am Mon, 2002-02-04 um 18.39 schrieb Nic Ferrier: Jakob Praher [EMAIL PROTECTED] writes: do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this subject.

Re: nio package and asynchronous io

2002-02-04 Thread Artur Biesiadowski
Mark Wielaard wrote: I have read the online 1.4 specs for java.nio and thought about how to implement it but I have done no actual work. We will get it in time, but nobody is actively working on it at the moment. For me, most tricky parts of nio is Buffer. You have to extend JNI to enable

Re: nio package and asynchronous io

2002-02-04 Thread Mark Wielaard
Hi, On Mon, 2002-02-04 at 22:19, Artur Biesiadowski wrote: Do you think that Buffers should be a part of classpath ? Or should they be left for jvm implementors ? There is quite a lot of code there - all kinds of wrapper classes, splitting, views etc. But on the other hand, core get/set

Re: nio package and asynchronous io

2002-02-04 Thread Bryce McKinlay
Mark Wielaard wrote: do you have any plan on adding nio support and asynchronous io to the classpath project? if yes what is your agenda on this subject. I have done a little bit of work for GCJ with this. I have read the online 1.4 specs for java.nio and thought about how to implement it

Re: nio package and asynchronous io

2002-02-04 Thread shudo
From: Artur Biesiadowski [EMAIL PROTECTED] For me, most tricky parts of nio is Buffer. You have to extend JNI to enable them, make some special tricks in jvm to allow them to work with acceptable speed. Do you think that Buffers should be a part of classpath ? Or should they be left for