Reputation: 2705
I'm working on some modifications to DynamoRIO, which uses byte*
for pointers into the code cache. When I'm debugging in gdb, the backtrace
command thinks every byte*
is null terminated, so it prints this massive spew of byte values all over the backtrace. I need a way to either:
byte*
(preferably just the pointer value as a hex number)Upvotes: 2
Views: 1829
Reputation: 7238
byte *
are displayed.Upvotes: 4