This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Re: PATCH: remove all traces of java.io.FileDescriptor from java.net
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Tom Tromey <tromey at redhat dot com>
- Cc: Bryce McKinlay <bryce at waitaki dot otago dot ac dot nz>, java-patches at gcc dot gnu dot org
- Date: Mon, 25 Mar 2002 19:57:31 -0500 (EST)
- Subject: Re: PATCH: remove all traces of java.io.FileDescriptor from java.net
On 25 Mar 2002, Tom Tromey wrote:
> Jeff, if you don't have time to continue working on this, let me
> know. I have some time allocated to making 3.1 work.
I don't mind revising my patch, but I don't have a lot of interest in
making FileDescriptor play nice with it.
>From a quick inspection of the API docs I'd guess we're required to
provide SocketImpl.getFileDescriptor() etc. but that is an abstract
class... I don't see any requirement that we have to actually use the fd
for anything. In particular the PlainSocketImpl class is outside the
scope of Sun's API and no user code will ever see an instance of it, so
I'm not sure why it should be bound to any particular behavior.
So my inclination is to resubmit the patch minus the SocketImpl changes.
Jeff