mirror of
https://github.com/apache/nuttx.git
synced 2026-05-23 14:58:13 +08:00
tools/minidump: support 64-bit stack dump
This is to follow up commit 1890b58e67 in patch #12316.
Signed-off-by: Yanfeng Liu <yfliu2008@qq.com>
This commit is contained in:
@@ -387,7 +387,7 @@ class DumpLogFile:
|
||||
start = addr_start
|
||||
|
||||
for val in match_res.groupdict()["VALS"].split():
|
||||
data = data + struct.pack("<I", int(val, 16))
|
||||
data = data + struct.pack("<Q", int(val, 16))
|
||||
|
||||
return start, data
|
||||
|
||||
|
||||
Reference in New Issue
Block a user