Skip to content

Commit

Permalink
Remove commented-out code
Browse files Browse the repository at this point in the history
llvm-svn: 360611
  • Loading branch information
JDevlieghere authored and MrSidims committed May 17, 2019
1 parent 67bf9a9 commit 1766e5c
Showing 1 changed file with 0 additions and 43 deletions.
43 changes: 0 additions & 43 deletions lldb/source/Commands/CommandObjectProcess.cpp
Expand Up @@ -252,49 +252,6 @@ class CommandObjectProcessLaunch : public CommandObjectProcessLaunchOrAttach {
ProcessLaunchCommandOptions m_options;
};

//#define SET1 LLDB_OPT_SET_1
//#define SET2 LLDB_OPT_SET_2
//#define SET3 LLDB_OPT_SET_3
//
// OptionDefinition
// CommandObjectProcessLaunch::CommandOptions::g_option_table[] =
//{
// // clang-format off
// {SET1 | SET2 | SET3, false, "stop-at-entry", 's', OptionParser::eNoArgument,
// nullptr, 0, eArgTypeNone, "Stop at the entry point of the program
// when launching a process."},
// {SET1, false, "stdin", 'i',
// OptionParser::eRequiredArgument, nullptr, 0, eArgTypeDirectoryName,
// "Redirect stdin for the process to <path>."},
// {SET1, false, "stdout", 'o',
// OptionParser::eRequiredArgument, nullptr, 0, eArgTypeDirectoryName,
// "Redirect stdout for the process to <path>."},
// {SET1, false, "stderr", 'e',
// OptionParser::eRequiredArgument, nullptr, 0, eArgTypeDirectoryName,
// "Redirect stderr for the process to <path>."},
// {SET1 | SET2 | SET3, false, "plugin", 'p',
// OptionParser::eRequiredArgument, nullptr, 0, eArgTypePlugin, "Name of
// the process plugin you want to use."},
// { SET2, false, "tty", 't',
// OptionParser::eOptionalArgument, nullptr, 0, eArgTypeDirectoryName, "Start
// the process in a terminal. If <path> is specified, look for a terminal whose
// name contains <path>, else start the process in a new terminal."},
// { SET3, false, "no-stdio", 'n', OptionParser::eNoArgument,
// nullptr, 0, eArgTypeNone, "Do not set up for terminal I/O to go to
// running process."},
// {SET1 | SET2 | SET3, false, "working-dir", 'w',
// OptionParser::eRequiredArgument, nullptr, 0, eArgTypeDirectoryName, "Set the
// current working directory to <path> when running the inferior."},
// {0, false, nullptr, 0, 0, nullptr, 0, eArgTypeNone, nullptr}
// // clang-format on
//};
//
//#undef SET1
//#undef SET2
//#undef SET3

// CommandObjectProcessAttach

static constexpr OptionDefinition g_process_attach_options[] = {
// clang-format off
{ LLDB_OPT_SET_ALL, false, "continue", 'c', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, "Immediately continue the process once attached." },
Expand Down

0 comments on commit 1766e5c

Please sign in to comment.