< prev index next >

src/java.base/linux/classes/sun/nio/ch/EPoll.java

Print this page
rev 49271 : [mq]: selector-cleanup

@@ -107,15 +107,15 @@
 
     private static native int eventsOffset();
 
     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 {
         IOUtil.load();
     }
< prev index next >