diff options
Diffstat (limited to 'executor/executor.cc')
| -rw-r--r-- | executor/executor.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/executor/executor.cc b/executor/executor.cc index ef75ed7ac..58fb42872 100644 --- a/executor/executor.cc +++ b/executor/executor.cc @@ -70,6 +70,7 @@ NORETURN PRINTF void error(const char* msg, ...); static NORETURN PRINTF void exitf(const char* msg, ...); // Print debug output, does not add \n at the end of msg as opposed to the previous functions. static PRINTF void debug(const char* msg, ...); +void debug_dump_data(const char* data, int length); static NORETURN void doexit(int status); static void receive_execute(); @@ -1311,3 +1312,15 @@ void debug(const char* msg, ...) va_end(args); fflush(stderr); } + +void debug_dump_data(const char* data, int length) +{ + if (!flag_debug) + return; + for (int i = 0; i < length; i++) { + debug("%02x ", data[i] & 0xff); + if (i % 16 == 15) + debug("\n"); + } + debug("\n"); +} |
