lldb_private::Section objects have a boolean flag that can be set that 
indicates that the section is thread specific. Any functions the load a module
given a slide, will currently ignore any sections that are thread specific.

lldb_private::Section now has:

bool
Section::IsThreadSpecific () const
{
    return m_thread_specific;
}

void
Section::SetIsThreadSpecific (bool b)
{
    m_thread_specific = b;
}

The ELF plug-in has been modified to set this for the ".tdata" and the ".tbss"
sections.

Eventually we need to have each lldb_private::Thread subclass be able to 
resolve a thread specific section, but for now they will just not resolve. The
code for that should be trivual to add, but the address resolving functions
will need to be changed to take a "ExecutionContext" object instead of just
a target so that thread specific sections can be resolved.

llvm-svn: 153537
diff --git a/lldb/source/Core/Section.cpp b/lldb/source/Core/Section.cpp
index f1f4dc1..0c9f8ec 100644
--- a/lldb/source/Core/Section.cpp
+++ b/lldb/source/Core/Section.cpp
@@ -36,6 +36,8 @@
     m_file_size     (file_size),
     m_children      (),
     m_fake          (false),
+    m_encrypted     (false),
+    m_thread_specific (false),
     m_linked_section_wp(),
     m_linked_offset (0)
 {
@@ -65,6 +67,8 @@
     m_file_size     (file_size),
     m_children      (),
     m_fake          (false),
+    m_encrypted     (false),
+    m_thread_specific (false),
     m_linked_section_wp(),
     m_linked_offset (0)
 {