aboutsummaryrefslogtreecommitdiff
path: root/libjava/ChangeLog
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-03-02 15:57:13 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-03-02 15:57:13 +0000
commita339cb5bd9cc8a2fc232055dd5f8a1f9f45f093c (patch)
tree7f7a771b552d63a7e8628e711227791e9c6ab053 /libjava/ChangeLog
parent05eb3436761139129acaf9e4d035fe10e62a8c8e (diff)
downloadgcc-a339cb5bd9cc8a2fc232055dd5f8a1f9f45f093c.tar.gz
gcc-a339cb5bd9cc8a2fc232055dd5f8a1f9f45f093c.tar.bz2
gcc-a339cb5bd9cc8a2fc232055dd5f8a1f9f45f093c.zip
2003-03-02 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/FileChannelImpl.java (fd): Type FileDescriptor instead of int. (lengthInternal): Removed. (FileChannelImpl): Fixed arguments, check type of file object. (size): Made it native. (implPosition): New native method. (implTruncate): New native method. (position): Implemented. (truncate): Implemented. (nio_mmap_file): Changed arguments. (nio_munmap_file): Changed arguments. (nio_msync): Changed arguments. * gnu/java/nio/natFileChannelImpl.cc (lengthInternal): Removed. (size): New method. (implPosition): New method. (implTruncate): New method. (nio_mmap_file): Changed arguments. (nio_munmap_file): Changed arguments. (nio_msync): Changed arguments. From-SVN: r63668
Diffstat (limited to 'libjava/ChangeLog')
-rw-r--r--libjava/ChangeLog23
1 files changed, 23 insertions, 0 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog
index 4f3af596055..7d8c17bf9d1 100644
--- a/libjava/ChangeLog
+++ b/libjava/ChangeLog
@@ -1,5 +1,28 @@
2003-03-02 Michael Koch <konqueror@gmx.de>
+ * gnu/java/nio/FileChannelImpl.java
+ (fd): Type FileDescriptor instead of int.
+ (lengthInternal): Removed.
+ (FileChannelImpl): Fixed arguments, check type of file object.
+ (size): Made it native.
+ (implPosition): New native method.
+ (implTruncate): New native method.
+ (position): Implemented.
+ (truncate): Implemented.
+ (nio_mmap_file): Changed arguments.
+ (nio_munmap_file): Changed arguments.
+ (nio_msync): Changed arguments.
+ * gnu/java/nio/natFileChannelImpl.cc
+ (lengthInternal): Removed.
+ (size): New method.
+ (implPosition): New method.
+ (implTruncate): New method.
+ (nio_mmap_file): Changed arguments.
+ (nio_munmap_file): Changed arguments.
+ (nio_msync): Changed arguments.
+
+2003-03-02 Michael Koch <konqueror@gmx.de>
+
* java/awt/dnd/DropTargetContext.java:
Compile fix: Forgot to commit import.