阅读:2021回复:1
請問這參數是做什麼的?
我查了一下這參數dom.ipc.reportProcessHangs跟這參數dom.ipc.processHangMonitor
都查不到資料出來 |
|
1楼#
发布于:2015-05-30 00:01
http://mxr.mozilla.org/mozilla-central/source/browser/app/profile/firefox.js#1900
// Enable e10s hang monitoring (slow script checking and plugin hang // detection). pref("dom.ipc.processHangMonitor", true); #ifdef DEBUG // Don't report hangs in DEBUG builds. They're too slow and often a // debugger is attached. pref("dom.ipc.reportProcessHangs", false); #else pref("dom.ipc.reportProcessHangs", true); #endifhttps://bugzilla.mozilla.org/show_bug.cgi?id=1118618 |
|
|