Adding this line to the top of the run() method in

NativeEventThread seems to fix the hanging problem.

    this.setPriority(Thread.MIN_PRIORITY);


Looks like it was starvation.


git-svn-id: svn://10.0.0.236/trunk@64830 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org
2000-04-01 01:17:33 +00:00
parent 2a9340e90c
commit 5345939064

View File

@@ -172,6 +172,7 @@ public void delete()
public void run()
{
this.setPriority(Thread.MIN_PRIORITY);
Assert.assert(-1 != nativeWebShell);
Assert.assert(null != windowControl);