diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-01-25 16:56:01 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-01-25 16:56:01 +0000 |
commit | a3435452295cf50b6c56558c0f3efb1d6f6338b2 (patch) | |
tree | aa8e1fa346d7ce4dc5a8796c214a8d371a71dfd3 /lldb/tools/debugserver/source/debugserver.cpp | |
parent | 389eb9b54ae0e151e393c2e5f23c40cc5baaa8a8 (diff) | |
download | bcm5719-llvm-a3435452295cf50b6c56558c0f3efb1d6f6338b2.tar.gz bcm5719-llvm-a3435452295cf50b6c56558c0f3efb1d6f6338b2.zip |
Trivial comment fix.
llvm-svn: 124195
Diffstat (limited to 'lldb/tools/debugserver/source/debugserver.cpp')
-rw-r--r-- | lldb/tools/debugserver/source/debugserver.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/debugserver.cpp b/lldb/tools/debugserver/source/debugserver.cpp index e75d59f1ed0..83131b95c39 100644 --- a/lldb/tools/debugserver/source/debugserver.cpp +++ b/lldb/tools/debugserver/source/debugserver.cpp @@ -653,8 +653,8 @@ static struct option g_long_options[] = { "native-regs", no_argument, NULL, 'r' }, // Specify to use the native registers instead of the gdb defaults for the architecture. { "stdio-path", required_argument, NULL, 's' }, // Set the STDIO path to be used when launching applications (STDIN, STDOUT and STDERR) (only if debugserver launches the process) { "stdin-path", required_argument, NULL, 'I' }, // Set the STDIN path to be used when launching applications (only if debugserver launches the process) - { "stdout-path", required_argument, NULL, 'O' }, // Set the STDIN path to be used when launching applications (only if debugserver launches the process) - { "stderr-path", required_argument, NULL, 'E' }, // Set the STDIN path to be used when launching applications (only if debugserver launches the process) + { "stdout-path", required_argument, NULL, 'O' }, // Set the STDOUT path to be used when launching applications (only if debugserver launches the process) + { "stderr-path", required_argument, NULL, 'E' }, // Set the STDERR path to be used when launching applications (only if debugserver launches the process) { "no-stdio", no_argument, NULL, 'n' }, // Do not set up any stdio (perhaps the program is a GUI program) (only if debugserver launches the process) { "setsid", no_argument, NULL, 'S' }, // call setsid() to make debugserver run in its own session { "disable-aslr", no_argument, NULL, 'D' }, // Use _POSIX_SPAWN_DISABLE_ASLR to avoid shared library randomization |