]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Improve on-line help for thread_apply_command and thread_apply_all_command.
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Fri, 20 Apr 2018 04:23:37 +0000 (06:23 +0200)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Fri, 20 Apr 2018 21:15:18 +0000 (23:15 +0200)
Add a Usage: line for thread_apply_command, in particular to mention
the thread ID list.

In thread_apply_command and thread_apply_all_command help, use
uppercase for arg names, as this style seems to be more standard.

2018-04-20  Philippe Waroquiers  <philippe.waroquiers@skynet.be>

* thread.c (_initialize_thread): improve on-line help for
thread_apply_command and thread_apply_all_command.

gdb/thread.c

index 23aa5ba11771c543851a53781f7a0843d8d2f1ed..a09d7e0ba086e224645d89adf0ba034522dc4d6a 100644 (file)
@@ -2028,15 +2028,17 @@ The new thread ID must be currently known."),
                  &thread_cmd_list, "thread ", 1, &cmdlist);
 
   add_prefix_cmd ("apply", class_run, thread_apply_command,
-                 _("Apply a command to a list of threads."),
+                 _("Apply a command to a list of threads.\n\
+Usage: thread apply ID... COMMAND\n\
+ID is a space-separated list of IDs of threads to apply COMMAND on."),
                  &thread_apply_list, "thread apply ", 1, &thread_cmd_list);
 
   add_cmd ("all", class_run, thread_apply_all_command,
           _("\
 Apply a command to all threads.\n\
 \n\
-Usage: thread apply all [-ascending] <command>\n\
--ascending: Call <command> for all threads in ascending order.\n\
+Usage: thread apply all [-ascending] COMMAND\n\
+-ascending: Call COMMAND for all threads in ascending order.\n\
             The default is descending order.\
 "),
           &thread_apply_list);