[Lldb-commits] [lldb] r203068 - Temporarily disable the JIT loading detector till we figure out why it crashes when lldb follows through exec's...
Jim Ingham
jingham at apple.com
Wed Mar 5 19:47:34 PST 2014
Author: jingham
Date: Wed Mar 5 21:47:34 2014
New Revision: 203068
URL: http://llvm.org/viewvc/llvm-project?rev=203068&view=rev
Log:
Temporarily disable the JIT loading detector till we figure out why it crashes when lldb follows through exec's...
Modified:
lldb/trunk/source/Target/Process.cpp
Modified: lldb/trunk/source/Target/Process.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Process.cpp?rev=203068&r1=203067&r2=203068&view=diff
==============================================================================
--- lldb/trunk/source/Target/Process.cpp (original)
+++ lldb/trunk/source/Target/Process.cpp Wed Mar 5 21:47:34 2014
@@ -3068,7 +3068,7 @@ Process::Launch (ProcessLaunchInfo &laun
if (dyld)
dyld->DidLaunch();
- GetJITLoaders().DidLaunch();
+ // GetJITLoaders().DidLaunch();
SystemRuntime *system_runtime = GetSystemRuntime ();
if (system_runtime)
@@ -3117,7 +3117,7 @@ Process::LoadCore ()
if (dyld)
dyld->DidAttach();
- GetJITLoaders().DidAttach();
+ //GetJITLoaders().DidAttach();
SystemRuntime *system_runtime = GetSystemRuntime ();
if (system_runtime)
@@ -3396,7 +3396,7 @@ Process::CompleteAttach ()
if (dyld)
dyld->DidAttach();
- GetJITLoaders().DidAttach();
+ // GetJITLoaders().DidAttach();
SystemRuntime *system_runtime = GetSystemRuntime ();
if (system_runtime)
More information about the lldb-commits
mailing list