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:
@@ -172,6 +172,7 @@ public void delete()
|
||||
|
||||
public void run()
|
||||
{
|
||||
this.setPriority(Thread.MIN_PRIORITY);
|
||||
Assert.assert(-1 != nativeWebShell);
|
||||
Assert.assert(null != windowControl);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user