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:
- Turn off the display of arguments in the backtrace, or
- Change the way gdb prints a
byte*(preferably just the pointer value as a hex number)
byte *are displayed.