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
This commit is contained in:
Greg Clayton
2011-12-01 23:28:38 +00:00
parent 576c0f8e54
commit 61e7a58c0c
17 changed files with 47 additions and 47 deletions

View File

@@ -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;
}