forked from openkylin/platform_build
Fix regex for finding symbol data.
The new output of debuggerd removed a space between the #00 and the rest of the line. The regex is very restrictive, so fixing it to handle the new output. Change-Id: I5259ae1e56a351608b330dfd858a2021e6d89358
This commit is contained in:
parent
8a373fd5ae
commit
65a69446d3
|
@ -20,9 +20,9 @@ import string
|
|||
import sys
|
||||
|
||||
###############################################################################
|
||||
# match "#00 pc 0003f52e /system/lib/libdvm.so" for example
|
||||
# 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):
|
||||
|
|
Loading…
Reference in New Issue