diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-01-29 12:19:14 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-01-29 12:19:14 +0100 |
commit | babedf6c696f88734e59b63d0c6614962cc57519 (patch) | |
tree | d4bb7f282a7679ac26d43a584304adcbb4b786c4 /dom | |
parent | 1a04d73a129926d54e13ac9d947062b221f0bacd (diff) | |
download | UXP-babedf6c696f88734e59b63d0c6614962cc57519.tar UXP-babedf6c696f88734e59b63d0c6614962cc57519.tar.gz UXP-babedf6c696f88734e59b63d0c6614962cc57519.tar.lz UXP-babedf6c696f88734e59b63d0c6614962cc57519.tar.xz UXP-babedf6c696f88734e59b63d0c6614962cc57519.zip |
Increase purple limit triggers for CC.
Making these much larger to allow more purple buffer buildup
and prevent overzealous cycle collection on purple buffer pressure.
Diffstat (limited to 'dom')
-rw-r--r-- | dom/base/nsJSEnvironment.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dom/base/nsJSEnvironment.cpp b/dom/base/nsJSEnvironment.cpp index 12bc20265..ebce7ea3f 100644 --- a/dom/base/nsJSEnvironment.cpp +++ b/dom/base/nsJSEnvironment.cpp @@ -126,13 +126,13 @@ static const uint32_t kMaxICCDuration = 2000; // ms // Force a CC after this long if there's more than NS_CC_FORCED_PURPLE_LIMIT // objects in the purple buffer. #define NS_CC_FORCED (2 * 60 * PR_USEC_PER_SEC) // 2 min -#define NS_CC_FORCED_PURPLE_LIMIT 10 +#define NS_CC_FORCED_PURPLE_LIMIT 100 // Don't allow an incremental GC to lock out the CC for too long. #define NS_MAX_CC_LOCKEDOUT_TIME (30 * PR_USEC_PER_SEC) // 30 seconds // Trigger a CC if the purple buffer exceeds this size when we check it. -#define NS_CC_PURPLE_LIMIT 200 +#define NS_CC_PURPLE_LIMIT 2000 // Large value used to specify that a script should run essentially forever #define NS_UNLIMITED_SCRIPT_RUNTIME (0x40000000LL << 32) |