--- old/src/share/classes/sun/nio/ch/Interruptible.java Tue Nov 9 09:07:30 2010 +++ new/src/share/classes/sun/nio/ch/Interruptible.java Tue Nov 9 09:07:30 2010 @@ -23,14 +23,14 @@ * questions. */ -/* +/** + * An object that interrupts a thread blocked in an I/O operation. */ package sun.nio.ch; - public interface Interruptible { - public void interrupt(); + public void interrupt(Thread t); }