Skip to content

Instantly share code, notes, and snippets.

Created September 26, 2014 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/188533a776226257206f to your computer and use it in GitHub Desktop.
Save anonymous/188533a776226257206f to your computer and use it in GitHub Desktop.
diff --git a/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
index fef629e..35d560a 100644
--- a/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
+++ b/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
@@ -163,7 +163,7 @@ ProcessPOSIX::DoAttachToProcessWithID(lldb::pid_t pid)
// Initialize the target module list
m_target.SetExecutableModule (exe_module_sp, true);
- SetSTDIOFileDescriptor(m_monitor->GetTerminalFD());
+ //SetSTDIOFileDescriptor(m_monitor->GetTerminalFD());
SetID(pid);
diff --git a/source/lldb.cpp b/source/lldb.cpp
index aa8a4ff..4ee8051 100644
--- a/source/lldb.cpp
+++ b/source/lldb.cpp
@@ -131,7 +131,7 @@ lldb_private::Initialize ()
ScriptInterpreterPython::InitializePrivate();
OperatingSystemPython::Initialize();
#endif
- JITLoaderGDB::Initialize();
+ //JITLoaderGDB::Initialize();
ProcessElfCore::Initialize();
#if defined (__APPLE__)
@@ -218,7 +218,7 @@ lldb_private::Terminate ()
#ifndef LLDB_DISABLE_PYTHON
OperatingSystemPython::Terminate();
#endif
- JITLoaderGDB::Terminate();
+ //JITLoaderGDB::Terminate();
ProcessElfCore::Terminate();
#if defined (__APPLE__)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment