[Lldb-commits] [lldb] r201897 - Oops, probably ought to turn on that fix...
Jim Ingham
jingham at apple.com
Fri Feb 21 14:36:11 PST 2014
Author: jingham
Date: Fri Feb 21 16:36:11 2014
New Revision: 201897
URL: http://llvm.org/viewvc/llvm-project?rev=201897&view=rev
Log:
Oops, probably ought to turn on that fix...
Modified:
lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp?rev=201897&r1=201896&r2=201897&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp Fri Feb 21 16:36:11 2014
@@ -2022,7 +2022,7 @@ ProcessGDBRemote::DoDestroy ()
if (packet_cmd == 'W' || packet_cmd == 'X')
{
-#if 0 && defined(__APPLE__)
+#if defined(__APPLE__)
// For Native processes on Mac OS X, we launch through the Host Platform, then hand the process off
// to debugserver, which becomes the parent process through "PT_ATTACH". Then when we go to kill
// the process on Mac OS X we call ptrace(PT_KILL) to kill it, then we call waitpid which returns
More information about the lldb-commits
mailing list