diff options
author | Greg Clayton <gclayton@apple.com> | 2011-12-01 23:28:38 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-12-01 23:28:38 +0000 |
commit | 61e7a58c0ced8df707c0ca0b85632268ace30d27 (patch) | |
tree | dd27b4584524382bc35eecd04121111ae2d30386 /lldb/source/API/SBThread.cpp | |
parent | 576c0f8e542e0a69d2f450450ef4ba8124b01d28 (diff) | |
download | bcm5719-llvm-61e7a58c0ced8df707c0ca0b85632268ace30d27.tar.gz bcm5719-llvm-61e7a58c0ced8df707c0ca0b85632268ace30d27.zip |
Process IDs (lldb::pid_t) and thread IDs (lldb::tid_t) are now 64 bit. This
will allow us to represent a process/thread ID using a pointer for the OS
plug-ins where they might want to represent the process or thread ID using
the address of the process or thread structure.
llvm-svn: 145644
Diffstat (limited to 'lldb/source/API/SBThread.cpp')
-rw-r--r-- | lldb/source/API/SBThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/API/SBThread.cpp b/lldb/source/API/SBThread.cpp index 5fcd6379d0b..69924ad6ad0 100644 --- a/lldb/source/API/SBThread.cpp +++ b/lldb/source/API/SBThread.cpp @@ -333,7 +333,7 @@ SBThread::GetThreadID () const tid = m_opaque_sp->GetID(); if (log) - log->Printf ("SBThread(%p)::GetThreadID () => 0x%4.4x", m_opaque_sp.get(), tid); + log->Printf ("SBThread(%p)::GetThreadID () => 0x%4.4llx", m_opaque_sp.get(), tid); return tid; } |