src/java.base/windows/classes/sun/nio/ch/NativeThread.java
branchunixdomainchannels
changeset 58848 c3df0f8b6d93
parent 58801 119ac9128c1b
child 58856 b2f0339a4cad
equal deleted inserted replaced
58847:692de65ab293 58848:c3df0f8b6d93
    27 
    27 
    28 
    28 
    29 // Signalling operations on native threads
    29 // Signalling operations on native threads
    30 
    30 
    31 
    31 
    32 public class NativeThread {
    32 class NativeThread {
    33 
    33 
    34     public static long current() {
    34     static long current() {
    35         // return 0 to ensure that async close of blocking sockets will close
    35         // return 0 to ensure that async close of blocking sockets will close
    36         // the underlying socket.
    36         // the underlying socket.
    37         return 0;
    37         return 0;
    38     }
    38     }
    39 
    39 
    40     public static void signal(long nt) { }
    40     static void signal(long nt) { }
    41 
       
    42 }
    41 }