зеркало из https://github.com/mozilla/pjs.git
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.
This commit is contained in:
Родитель
15e34eb2bd
Коммит
df7298bf88
|
@ -172,6 +172,7 @@ public void delete()
|
|||
|
||||
public void run()
|
||||
{
|
||||
this.setPriority(Thread.MIN_PRIORITY);
|
||||
Assert.assert(-1 != nativeWebShell);
|
||||
Assert.assert(null != windowControl);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче