diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-15 17:04:07 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-15 17:04:07 -0700 |
commit | aec9ccfeac86729ec0306934d40df32503fd6354 (patch) | |
tree | d44a577f71371601cb35a2c6e552f6c954869ee5 /src/library_gc.js | |
parent | dec9d8fbc45d5ce8b36a632c03fdbca1c2139f3b (diff) |
browser gc test
Diffstat (limited to 'src/library_gc.js')
-rw-r--r-- | src/library_gc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gc.js b/src/library_gc.js index 75cea390..ccf6656d 100644 --- a/src/library_gc.js +++ b/src/library_gc.js @@ -18,7 +18,7 @@ if (GC_SUPPORT) { GC.initted = true; #if GENERATING_HTML setInterval(function() { - GC.maybeGC(); + GC.maybeCollect(); }, 1000); #else // No HTML intervals, so you need to call GC.maybeCollect() or GC.collect() manually |