src/java.base/linux/classes/sun/nio/ch/EPoll.java
changeset 49290 07779973cbe2
parent 49248 15a0e60c8b97
--- a/src/java.base/linux/classes/sun/nio/ch/EPoll.java	Fri Mar 23 09:51:02 2018 +0100
+++ b/src/java.base/linux/classes/sun/nio/ch/EPoll.java	Fri Mar 23 14:18:18 2018 +0000
@@ -109,11 +109,11 @@
 
     private static native int dataOffset();
 
-    static native int epollCreate() throws IOException;
+    static native int create() throws IOException;
 
-    static native int epollCtl(int epfd, int opcode, int fd, int events);
+    static native int ctl(int epfd, int opcode, int fd, int events);
 
-    static native int epollWait(int epfd, long pollAddress, int numfds)
+    static native int wait(int epfd, long pollAddress, int numfds, int timeout)
         throws IOException;
 
     static {