Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
D 0.36 KB | None | 0 0
  1.             {
  2.                 GC.ProfileStats stats = GC.profileStats;
  3.                 if (stats.numCollections != lastGCStats_.numCollections) {
  4.                     GC.Stats sts = GC.stats;
  5.                     writeLog("GC run %s, %s  %s/%s bytes used".format(stats.numCollections, stats.totalCollectionTime - lastGCStats_.totalCollectionTime, sts.usedSize, sts.usedSize + sts.freeSize));
  6.  
  7.                     lastGCStats_ = stats;
  8.                 }
  9.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement