Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-08-18 15:36:45 +0400
committerjfrijters <jfrijters>2011-08-18 15:36:45 +0400
commit05be269edcd34db64d7cfdcdfc85f62854109ba3 (patch)
tree8254d1d700ea8054b30142f25e0b8d4d59535497 /openjdk/sun/nio/ch/NativeDispatcher.java
parent049db0ce5b02f51e5bfe13aeb5873cf67163a2c4 (diff)
Reduce the number of differences in FileChannelImpl.
Diffstat (limited to 'openjdk/sun/nio/ch/NativeDispatcher.java')
-rw-r--r--openjdk/sun/nio/ch/NativeDispatcher.java24
1 files changed, 0 insertions, 24 deletions
diff --git a/openjdk/sun/nio/ch/NativeDispatcher.java b/openjdk/sun/nio/ch/NativeDispatcher.java
index 4752ce8e..823a101f 100644
--- a/openjdk/sun/nio/ch/NativeDispatcher.java
+++ b/openjdk/sun/nio/ch/NativeDispatcher.java
@@ -35,30 +35,6 @@ import java.io.*;
abstract class NativeDispatcher
{
- abstract int read(FileDescriptor fd, long address, int len)
- throws IOException;
-
- int pread(FileDescriptor fd, long address, int len,
- long position, Object lock) throws IOException
- {
- throw new IOException("Operation Unsupported");
- }
-
- abstract long readv(FileDescriptor fd, long address, int len)
- throws IOException;
-
- abstract int write(FileDescriptor fd, long address, int len)
- throws IOException;
-
- int pwrite(FileDescriptor fd, long address, int len,
- long position, Object lock) throws IOException
- {
- throw new IOException("Operation Unsupported");
- }
-
- abstract long writev(FileDescriptor fd, long address, int len)
- throws IOException;
-
abstract void close(FileDescriptor fd) throws IOException;
// Prepare the given fd for closing by duping it to a known internal fd