Searched defs:readerThread (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DTargetVM.java42 private Thread readerThread; field in class:TargetVM
56 this.readerThread = new Thread(vm.threadGroupForJDI(),
58 this.readerThread.setDaemon(true);
62 readerThread.start();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSocketChannelImpl.java58 private volatile long readerThread = 0; field in class:SocketChannelImpl
275 readerThread = 0;
325 readerThread = NativeThread.current();
445 readerThread = NativeThread.current();
660 readerThread = NativeThread.current();
731 readerThread = NativeThread.current();
760 readerThread = 0;
803 if (readerThread != 0)
804 NativeThread.signal(readerThread);
862 if (readerThread !
[all...]
H A DDatagramChannelImpl.java61 private volatile long readerThread = 0; field in class:DatagramChannelImpl
353 readerThread = NativeThread.current();
388 readerThread = 0;
558 readerThread = NativeThread.current();
564 readerThread = 0;
587 readerThread = NativeThread.current();
593 readerThread = 0;
1007 if ((th = readerThread) != 0)

Completed in 34 milliseconds