[Lldb-commits] [lldb] r209299 - Correct comment for thread name log option
Ed Maste
emaste at freebsd.org
Wed May 21 06:46:46 PDT 2014
Author: emaste
Date: Wed May 21 08:46:46 2014
New Revision: 209299
URL: http://llvm.org/viewvc/llvm-project?rev=209299&view=rev
Log:
Correct comment for thread name log option
Modified:
lldb/trunk/source/Core/Log.cpp
Modified: lldb/trunk/source/Core/Log.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/Log.cpp?rev=209299&r1=209298&r2=209299&view=diff
==============================================================================
--- lldb/trunk/source/Core/Log.cpp (original)
+++ lldb/trunk/source/Core/Log.cpp Wed May 21 08:46:46 2014
@@ -110,7 +110,7 @@ Log::PrintfWithFlagsVarArg (uint32_t fla
if (m_options.Test (LLDB_LOG_OPTION_PREPEND_PROC_AND_THREAD))
header.Printf ("[%4.4x/%4.4" PRIx64 "]: ", getpid(), Host::GetCurrentThreadID());
- // Add the process and thread if requested
+ // Add the thread name if requested
if (m_options.Test (LLDB_LOG_OPTION_PREPEND_THREAD_NAME))
{
std::string thread_name (Host::GetThreadName (getpid(), Host::GetCurrentThreadID()));
More information about the lldb-commits
mailing list