Skip to content
Snippets Groups Projects
Commit fbfa414f authored by Avi Kivity's avatar Avi Kivity
Browse files

gdb: print thread address as hex

parent 8af64a48
No related branches found
No related tags found
No related merge requests found
...@@ -219,7 +219,7 @@ class osv_info_threads(gdb.Command): ...@@ -219,7 +219,7 @@ class osv_info_threads(gdb.Command):
fname = '??' fname = '??'
if sal.symtab: if sal.symtab:
fname = sal.symtab.filename fname = sal.symtab.filename
gdb.write('%s cpu%s %s %s at %s:%s\n' % gdb.write('0x%x cpu%s %s %s at %s:%s\n' %
(ulong(t.address), (ulong(t.address),
cpu['arch']['acpi_id'], cpu['arch']['acpi_id'],
status, status,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment