Improve process launch comments for Windows
authorAdrian McCarthy <amccarth@google.com>
Thu, 28 Feb 2019 19:14:02 +0000 (19:14 +0000)
committerAdrian McCarthy <amccarth@google.com>
Thu, 28 Feb 2019 19:14:02 +0000 (19:14 +0000)
commit34f2bee0fb04e9725eadd95f7abedf72f19bcabd
tree46188c23b791661ebeb144bf2d272584e1f06c24
parente47d32f165c01e6cb3dcf71f6a9963ce66ea0972
Improve process launch comments for Windows

The existing comment about over-allocating the command line was incorrect.  The
contents of the command line may be changed, but it's not necessary to over
allocate.  The changes will be limited to the existing contents of the string
(e.g., by replacing spaces with L'\0' to tokenize the command line).

Also added a comment explaining a possible cause of failure to save the next
programmer some time when they try to debug a 64-bit process from a 32-bit
LLDB.

llvm-svn: 355121
lldb/source/Host/windows/ProcessLauncherWindows.cpp