2003-06-19 Michael Koch <konqueror@gmx.de>

* gnu/java/nio/FileChannelImpl.java
	(map_address): Made public.
	(FileChannelImpl): Merged with classpath.
	* gnu/java/nio/natFileChannelImpl.cc
	(nio_mmap_file): Commented out unused arguments.
	(nio_unmmap_file): Likewise.
	(niu_msync): Likewise.

From-SVN: r68186
This commit is contained in:
Michael Koch 2003-06-19 09:33:58 +00:00 committed by Michael Koch
parent 16e4b777c8
commit b7a793afb7
3 changed files with 17 additions and 5 deletions

View file

@ -65,7 +65,7 @@ import gnu.gcj.RawData;
public class FileChannelImpl extends FileChannel
{
RawData map_address;
public RawData map_address;
int length;
FileDescriptor fd;
@ -85,7 +85,7 @@ public class FileChannelImpl extends FileChannel
public FileChannelImpl ()
{
this (new FileDescriptor (-1), true, null);
this (new FileDescriptor (), true, null);
}
private native long implPosition ();