Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(147)

Side by Side Diff: tools/memory_watcher/scripts/memtrace.pl

Issue 10134019: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed pylintrc Created 8 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tools/memory_watcher/scripts/memprof.pl ('k') | tools/memory_watcher/scripts/summary.pl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/perl 1 #!/usr/bin/perl
2 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
3 # 5 #
4 # Blame callstacks for each memory allocation. 6 # Blame callstacks for each memory allocation.
5 # Similar to memprof.pl, will also try to filter out unuseful stacks. 7 # Similar to memprof.pl, will also try to filter out unuseful stacks.
6 # TODO: better describe how these tools differ. 8 # TODO: better describe how these tools differ.
7 # 9 #
8 # Usage: 10 # Usage:
9 # 11 #
10 # memtrace.pl <logfile> 12 # memtrace.pl <logfile>
11 # 13 #
12 # logfile -- The memwatcher.logXXXX file to summarize. 14 # logfile -- The memwatcher.logXXXX file to summarize.
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 return $num; 137 return $num;
136 } 138 }
137 139
138 # ----- Main ------------------------------------------------ 140 # ----- Main ------------------------------------------------
139 141
140 # Get the command line argument 142 # Get the command line argument
141 my $filename = shift; 143 my $filename = shift;
142 144
143 # Process the file. 145 # Process the file.
144 process_raw($filename); 146 process_raw($filename);
OLDNEW
« no previous file with comments | « tools/memory_watcher/scripts/memprof.pl ('k') | tools/memory_watcher/scripts/summary.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698