mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-22 17:40:45 +08:00
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
This commit is contained in:
parent
23c41c0833
commit
2e54a860a8
@ -1,3 +1,8 @@
|
||||
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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user