Merge "Fix regex for finding symbol data."

This commit is contained in:
Christopher Ferris 2013-12-12 21:53:08 +00:00 committed by Gerrit Code Review
commit 2c8078fdcc
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import sys
###############################################################################
# match "#00 pc 0003f52e /system/lib/libdvm.so" for example
###############################################################################
trace_line = re.compile("(.*)(\#[0-9]+) (..) ([0-9a-f]{8}) ([^\r\n \t]*)")
trace_line = re.compile("(.*)(\#[0-9]+) {1,2}(..) ([0-9a-f]{8}) ([^\r\n \t]*)")
# returns a list containing the function name and the file/lineno
def CallAddr2Line(lib, addr):