|
From: Mark W. <ma...@so...> - 2023-04-16 00:01:06
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=03d9229f0bdb28cf35e3bfc98010952594b091cd commit 03d9229f0bdb28cf35e3bfc98010952594b091cd Author: Mark Wielaard <ma...@kl...> Date: Sun Apr 16 01:55:48 2023 +0200 Fixup vgdb --help message The --valgrind and the --vargs were missingin the OPTIONS summary. A \n was missing after the --vargs description. Diff: --- coregrind/vgdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coregrind/vgdb.c b/coregrind/vgdb.c index 1cc37a3566..c4a7042984 100644 --- a/coregrind/vgdb.c +++ b/coregrind/vgdb.c @@ -1899,7 +1899,7 @@ void usage(void) " [--wait=<number>] [--max-invoke-ms=<number>]\n" " [--port=<portnr>\n" " [--cmd-time-out=<number>] [-l] [-T] [-D] [-d]\n" -" [--multi]\n" +" [--multi] [--valgrind=<valgrind-exe>] [--vargs ...]\n" " \n" " --pid arg must be given if multiple Valgrind gdbservers are found.\n" " --vgdb-prefix arg must be given to both Valgrind and vgdb utility\n" @@ -1915,7 +1915,7 @@ void usage(void) " gdbserver has not processed a command after number seconds\n" " --multi start in extended-remote mode, wait for gdb to tell us what to run\n" " --valgrind, pass the path to valgrind to use. If not specified, the system valgrind will be launched.\n" -" --vargs everything that follows is an argument for valgrind." +" --vargs everything that follows is an argument for valgrind.\n" " -l arg tells to show the list of running Valgrind gdbserver and then exit.\n" " -T arg tells to add timestamps to vgdb information messages.\n" " -D arg tells to show shared mem status and then exit.\n" |