1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-31 22:02:27 +01:00

Allow plugins onUnload handlers, fix some threadYield issues.

This commit is contained in:
Kris Maglione
2008-12-01 15:08:50 +00:00
parent 855caac185
commit a2550499c8
7 changed files with 24 additions and 15 deletions

View File

@@ -15,8 +15,8 @@ const template = {
continue;
if (sep && n++)
ret += sep;
//if (interruptable && n % interruptable == 0)
// liberator.threadYield(false, true);
if (interruptable && n % interruptable == 0)
liberator.threadYield(true, true);
ret += val;
}
return ret;