[Lldb-commits] [lldb] r156193 - in /lldb/trunk/source/Host/common: Host.cpp Mutex.cpp
Jim Ingham
jingham at apple.com
Fri May 4 12:24:50 PDT 2012
Author: jingham
Date: Fri May 4 14:24:49 2012
New Revision: 156193
URL: http://llvm.org/viewvc/llvm-project?rev=156193&view=rev
Log:
Fix a think in Mutex::Locker::Locker(pthread_mutex_t *) Really should lock the mutex handed in, not the m_mutex_ptr that you've set to NULL...
Rework the Host.cpp::ThreadNameAccessor to use ThreadSafeSTLMap - we've got it so we might as well use it. Also works around a problem with the
Mutex::Locker class raising fallacious asserts in debug mode when used with pthread_mutex_t's that weren't backed by Mutex objects.
Modified:
lldb/trunk/source/Host/common/Host.cpp
lldb/trunk/source/Host/common/Mutex.cpp
Modified: lldb/trunk/source/Host/common/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Host.cpp?rev=156193&r1=156192&r2=156193&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Host.cpp (original)
+++ lldb/trunk/source/Host/common/Host.cpp Fri May 4 14:24:49 2012
@@ -14,6 +14,7 @@
#include "lldb/Core/Error.h"
#include "lldb/Core/Log.h"
#include "lldb/Core/StreamString.h"
+#include "lldb/Core/ThreadSafeSTLMap.h"
#include "lldb/Host/Config.h"
#include "lldb/Host/Endian.h"
#include "lldb/Host/FileSpec.h"
@@ -610,6 +611,24 @@
return err == 0;
}
+// rdar://problem/8153284
+// Fixed a crasher where during shutdown, loggings attempted to access the
+// thread name but the static map instance had already been destructed.
+// So we are using a ThreadSafeSTLMap POINTER, initializing it with a
+// pthread_once action. That map will get leaked.
+//
+// Another approach is to introduce a static guard object which monitors its
+// own destruction and raises a flag, but this incurs more overhead.
+
+static pthread_once_t g_thread_map_once = PTHREAD_ONCE_INIT;
+static ThreadSafeSTLMap<uint64_t, std::string> *g_thread_names_map_ptr;
+
+static void
+InitThreadNamesMap()
+{
+ g_thread_names_map_ptr = new ThreadSafeSTLMap<uint64_t, std::string>();
+}
+
//------------------------------------------------------------------
// Control access to a static file thread name map using a single
// static function to avoid a static constructor.
@@ -617,31 +636,26 @@
static const char *
ThreadNameAccessor (bool get, lldb::pid_t pid, lldb::tid_t tid, const char *name)
{
+ int success = ::pthread_once (&g_thread_map_once, InitThreadNamesMap);
+ if (success != 0)
+ return NULL;
+
uint64_t pid_tid = ((uint64_t)pid << 32) | (uint64_t)tid;
- static pthread_mutex_t g_mutex = PTHREAD_MUTEX_INITIALIZER;
- Mutex::Locker locker(&g_mutex);
-
- typedef std::map<uint64_t, std::string> thread_name_map;
- // rdar://problem/8153284
- // Fixed a crasher where during shutdown, loggings attempted to access the
- // thread name but the static map instance had already been destructed.
- // Another approach is to introduce a static guard object which monitors its
- // own destruction and raises a flag, but this incurs more overhead.
- static thread_name_map *g_thread_names_ptr = new thread_name_map();
- thread_name_map &g_thread_names = *g_thread_names_ptr;
-
if (get)
{
// See if the thread name exists in our thread name pool
- thread_name_map::iterator pos = g_thread_names.find(pid_tid);
- if (pos != g_thread_names.end())
- return pos->second.c_str();
+ std::string value;
+ bool found_it = g_thread_names_map_ptr->GetValueForKey (pid_tid, value);
+ if (found_it)
+ return value.c_str();
+ else
+ return NULL;
}
- else
+ else if (name)
{
// Set the thread name
- g_thread_names[pid_tid] = name;
+ g_thread_names_map_ptr->SetValueForKey (pid_tid, std::string(name));
}
return NULL;
}
Modified: lldb/trunk/source/Host/common/Mutex.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Host/common/Mutex.cpp?rev=156193&r1=156192&r2=156193&view=diff
==============================================================================
--- lldb/trunk/source/Host/common/Mutex.cpp (original)
+++ lldb/trunk/source/Host/common/Mutex.cpp Fri May 4 14:24:49 2012
@@ -132,8 +132,7 @@
Mutex::Locker::Locker (pthread_mutex_t *mutex_ptr) :
m_mutex_ptr (NULL)
{
- if (m_mutex_ptr)
- Lock (m_mutex_ptr);
+ Lock (mutex_ptr);
}
//----------------------------------------------------------------------
More information about the lldb-commits
mailing list