diff options
author | Jason Molenda <jmolenda@apple.com> | 2016-06-23 01:18:16 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2016-06-23 01:18:16 +0000 |
commit | cb6dae22e2984558f983b7a64c70c2b7b08793aa (patch) | |
tree | 1839dfe1f57752e090420a2cf505b4644bd55d72 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | d3d9cbf127b8470944e882ffc7b25a42727bf624 (diff) | |
download | bcm5719-llvm-cb6dae22e2984558f983b7a64c70c2b7b08793aa.tar.gz bcm5719-llvm-cb6dae22e2984558f983b7a64c70c2b7b08793aa.zip |
Do some minor renames of "Mac OS X" to "macOS".
There's uses of "macosx" that will be more tricky to
change, like in triples (e.g. "x86_64-apple-macosx10.11") -
for now I'm just updating source comments and strings printed
for humans.
llvm-svn: 273524
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 13db5cef0ad..c8ccaaed2e0 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -2902,9 +2902,9 @@ ProcessGDBRemote::DoDestroy () if (packet_cmd == 'W' || packet_cmd == 'X') { #if defined(__APPLE__) - // For Native processes on Mac OS X, we launch through the Host Platform, then hand the process off + // For Native processes on macOS, 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 + // the process on macOS we call ptrace(PT_KILL) to kill it, then we call waitpid which returns // with no error and the correct status. But amusingly enough that doesn't seem to actually reap // the process, but instead it is left around as a Zombie. Probably the kernel is in the process of // switching ownership back to lldb which was the original parent, and gets confused in the handoff. |