src/java.base/share/classes/java/nio/channels/spi/AbstractInterruptibleChannel.java
changeset 49001 ce06058197a4
parent 47216 71c04702a3d5
child 52427 3c6aa484536c
equal deleted inserted replaced
49000:a406a9c451a0 49001:ce06058197a4
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   203     }
   203     }
   204 
   204 
   205 
   205 
   206     // -- jdk.internal.misc.SharedSecrets --
   206     // -- jdk.internal.misc.SharedSecrets --
   207     static void blockedOn(Interruptible intr) {         // package-private
   207     static void blockedOn(Interruptible intr) {         // package-private
   208         SharedSecrets.getJavaLangAccess().blockedOn(Thread.currentThread(), intr);
   208         SharedSecrets.getJavaLangAccess().blockedOn(intr);
   209     }
   209     }
   210 }
   210 }