Chromium Code Reviews| Index: tools/gcmole/gccause.lua |
| diff --git a/tools/gcmole/gccause.lua b/tools/gcmole/gccause.lua |
| index a6fe5421374a6b4acfc61045cc2a03d493bb404d..b9891767de390eb559393c71f45fb400de036029 100644 |
| --- a/tools/gcmole/gccause.lua |
| +++ b/tools/gcmole/gccause.lua |
| @@ -48,6 +48,8 @@ local function TrackCause(name, lvl) |
| T[f] = true |
| TrackCause(f, (lvl or 0) + 1) |
| end |
| + |
| + if f == '<GC>' then break end |
|
Erik Corry
2011/10/04 11:25:23
Deliberate?
Vyacheslav Egorov (Chromium)
2011/10/04 11:30:29
Yes. Otherwise it goes too deep.
|
| end |
| end |
| end |