843844845846847848849850851852853
synchronized (blockerLock) { Interruptible b = blocker; if (b != null) { interrupt0(); // Just to set the interrupt flag b.interrupt(); return; } } interrupt0(); }
914915916917918919920921922923924
synchronized (blockerLock) { Interruptible b = blocker; if (b != null) { interrupt0(); // Just to set the interrupt flag b.interrupt(this); return; } } interrupt0(); }
930931932933934935936937938939940
903904905906907908909910911912913
860861862863864865866867868869870
744745746747748749750751752753754
*/ public void interrupt() { checkAccess(); Interruptible b = blocker; if (b != null) { b.interrupt(); } interrupt0(); } /**
11631164116511661167116811691170117111721173