Reapply r351662 (by emaste):

lldb: shorten thread names to make logs easier to follow

lldb prepends the thread name to log entries, and the existing thread
name for the FreeBSD ProcessMonitor thread was longer than the kernel's
supported thread name length, and so was truncated.  This made logs hard
to read, as the truncated thread name ran into the log message.  Shorten
"lldb.process.freebsd.operation" to just "freebsd.op" so that logs are
more readable.

(Upstreaming to lldb still to be done).
This commit is contained in:
Dimitry Andric 2020-08-06 16:44:24 +00:00
parent ebc1d79aff
commit 45e1ec9e24
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/clang1100-import/; revision=363971

View File

@ -786,7 +786,7 @@ ProcessMonitor::~ProcessMonitor() { StopMonitor(); }
// Thread setup and tear down.
void ProcessMonitor::StartLaunchOpThread(LaunchArgs *args, Status &error) {
static const char *g_thread_name = "lldb.process.freebsd.operation";
static const char *g_thread_name = "freebsd.op";
if (m_operation_thread && m_operation_thread->IsJoinable())
return;
@ -956,7 +956,7 @@ bool ProcessMonitor::Launch(LaunchArgs *args) {
void ProcessMonitor::StartAttachOpThread(AttachArgs *args,
lldb_private::Status &error) {
static const char *g_thread_name = "lldb.process.freebsd.operation";
static const char *g_thread_name = "freebsd.op";
if (m_operation_thread && m_operation_thread->IsJoinable())
return;