Commit 2e54a860 by Mark Wielaard Committed by Michael Koch

SelectorImpl.java (select): Call static Thread interrupted() method to clear…

SelectorImpl.java (select): Call static Thread interrupted() method to clear interupt flag of our Thread.

2004-07-09  Mark Wielaard  <mark@klomp.org>

	* gnu/java/nio/SelectorImpl.java (select): Call static Thread
	interrupted() method to clear interupt flag of our Thread.

From-SVN: r84367
parent 23c41c08
2004-07-09 Mark Wielaard <mark@klomp.org>
* gnu/java/nio/SelectorImpl.java (select): Call static Thread
interrupted() method to clear interupt flag of our Thread.
2004-07-09 Dalibor Topic <robilad@kaffe.org>
* java/nio/Buffer.java,
......
......@@ -261,7 +261,7 @@ public class SelectorImpl extends AbstractSelector
if (unhandledWakeup)
{
unhandledWakeup = false;
selectThread.interrupted ();
Thread.interrupted ();
}
selectThread = null;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment