summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authordmikurube@chromium.org <dmikurube@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-13 13:36:30 +0000
committerdmikurube@chromium.org <dmikurube@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-13 13:36:30 +0000
commitc992076e4118dbfc5dc3ba5822de5f229969add3 (patch)
tree1b6542b634f4cccf6a0debd9be21d551d6c03b06 /third_party
parent32f32d557929b0ce0e76aba37aebfbc34d2b2bf3 (diff)
downloadchromium_src-c992076e4118dbfc5dc3ba5822de5f229969add3.zip
chromium_src-c992076e4118dbfc5dc3ba5822de5f229969add3.tar.gz
chromium_src-c992076e4118dbfc5dc3ba5822de5f229969add3.tar.bz2
Revert pprof change which was for dmprof.
A regexp change was required in pprof for tools/deep_memory_profiler/dmprof to match the chrome binary. But, dmprof doesn't use pprof now. It switched to use an original script (tools/find_runtime_symbols). BUG=none Review URL: https://chromiumcodereview.appspot.com/10928177 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156542 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rwxr-xr-xthird_party/tcmalloc/chromium/src/pprof2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/tcmalloc/chromium/src/pprof b/third_party/tcmalloc/chromium/src/pprof
index 2bd58a2..727eb43 100755
--- a/third_party/tcmalloc/chromium/src/pprof
+++ b/third_party/tcmalloc/chromium/src/pprof
@@ -4345,7 +4345,7 @@ sub ParseLibraries {
my $finish;
my $offset;
my $lib;
- if ($l =~ /^($h)-($h)\s+..x.\s+($h)\s+\S+:\S+\s+\d+\s+(\S+(\.(so|dll|dylib|bundle)|chrome)((\.\d+)+\w*(\.\d+){0,3})?)$/i) {
+ if ($l =~ /^($h)-($h)\s+..x.\s+($h)\s+\S+:\S+\s+\d+\s+(\S+\.(so|dll|dylib|bundle)((\.\d+)+\w*(\.\d+){0,3})?)$/i) {
# Full line from /proc/self/maps. Example:
# 40000000-40015000 r-xp 00000000 03:01 12845071 /lib/ld-2.3.2.so
$start = HexExtend($1);