diff options
author | Jason Molenda <jmolenda@apple.com> | 2018-03-06 23:33:02 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2018-03-06 23:33:02 +0000 |
commit | 702895989a3353aa5ffde4eec5405da880518f67 (patch) | |
tree | f40390e5be4a33d471ddf603e483879332235e8b | |
parent | bff272faa9d09689dfaa49c9018c5dba621019c6 (diff) | |
download | bcm5719-llvm-702895989a3353aa5ffde4eec5405da880518f67.tar.gz bcm5719-llvm-702895989a3353aa5ffde4eec5405da880518f67.zip |
the thread id is easier to read in base16.
llvm-svn: 326849
-rw-r--r-- | lldb/tools/darwin-threads/examine-threads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/tools/darwin-threads/examine-threads.c b/lldb/tools/darwin-threads/examine-threads.c index 5d965140cf8..51f35b6b0cc 100644 --- a/lldb/tools/darwin-threads/examine-threads.c +++ b/lldb/tools/darwin-threads/examine-threads.c @@ -403,7 +403,7 @@ int main(int argc, char **argv) { int wordsize; uint64_t pc = get_current_pc(thread_list[i], &wordsize); - printf("thread #%d, system-wide-unique-tid %lld, suspend count is %d, ", + printf("thread #%d, system-wide-unique-tid 0x%llx, suspend count is %d, ", i, identifier_info.thread_id, basic_info->suspend_count); if (wordsize == 8) printf("pc 0x%016llx, ", pc); |