You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{ LLDB_OPT_SET_ALL, false, "continue", 'c', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, "Immediately continue the process once attached." },
261
-
{ LLDB_OPT_SET_ALL, false, "plugin", 'P', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypePlugin, "Name of the process plugin you want to use." },
262
-
{ LLDB_OPT_SET_1, false, "pid", 'p', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypePid, "The process ID of an existing process to attach to." },
263
-
{ LLDB_OPT_SET_2, false, "name", 'n', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeProcessName, "The name of the process to attach to." },
{ LLDB_OPT_SET_2, false, "waitfor", 'w', OptionParser::eNoArgument, nullptr, {}, 0, eArgTypeNone, "Wait for the process with <process-name> to launch." },
266
-
// clang-format on
259
+
#defineLLDB_OPTIONS_process_attach
260
+
#include"CommandOptions.inc"
267
261
};
268
262
269
263
#pragma mark CommandObjectProcessAttach
@@ -506,9 +500,8 @@ class CommandObjectProcessAttach : public CommandObjectProcessLaunchOrAttach {
{ LLDB_OPT_SET_ALL, false, "ignore-count",'i', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeUnsignedInteger, "Ignore <N> crossings of the breakpoint (if it exists) for the currently selected thread." }
511
-
// clang-format on
503
+
#defineLLDB_OPTIONS_process_continue
504
+
#include"CommandOptions.inc"
512
505
};
513
506
514
507
#pragma mark CommandObjectProcessContinue
@@ -667,9 +660,8 @@ class CommandObjectProcessContinue : public CommandObjectParsed {
{ LLDB_OPT_SET_1, false, "keep-stopped", 's', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeBoolean, "Whether or not the process should be kept stopped on detach (if possible)." },
672
-
// clang-format on
663
+
#defineLLDB_OPTIONS_process_detach
664
+
#include"CommandOptions.inc"
673
665
};
674
666
675
667
#pragma mark CommandObjectProcessDetach
@@ -764,9 +756,8 @@ class CommandObjectProcessDetach : public CommandObjectParsed {
{ LLDB_OPT_SET_ALL, false, "plugin", 'p', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypePlugin, "Name of the process plugin you want to use." },
769
-
// clang-format on
759
+
#defineLLDB_OPTIONS_process_connect
760
+
#include"CommandOptions.inc"
770
761
};
771
762
772
763
#pragma mark CommandObjectProcessConnect
@@ -889,9 +880,8 @@ class CommandObjectProcessPlugin : public CommandObjectProxy {
{ LLDB_OPT_SET_ALL, false, "install", 'i', OptionParser::eOptionalArgument, nullptr, {}, 0, eArgTypePath, "Install the shared library to the target. If specified without an argument then the library will installed in the current working directory." },
894
-
// clang-format on
883
+
#defineLLDB_OPTIONS_process_load
884
+
#include"CommandOptions.inc"
895
885
};
896
886
897
887
#pragma mark CommandObjectProcessLoad
@@ -1273,11 +1263,8 @@ class CommandObjectProcessStatus : public CommandObjectParsed {
{ LLDB_OPT_SET_1, false, "stop", 's', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeBoolean, "Whether or not the process should be stopped if the signal is received." },
1278
-
{ LLDB_OPT_SET_1, false, "notify", 'n', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeBoolean, "Whether or not the debugger should notify the user if the signal is received." },
1279
-
{ LLDB_OPT_SET_1, false, "pass", 'p', OptionParser::eRequiredArgument, nullptr, {}, 0, eArgTypeBoolean, "Whether or not the signal should be passed to the process." }
0 commit comments