From: Mark Wielaard Date: Sat, 15 Apr 2023 23:55:48 +0000 (+0200) Subject: Fixup vgdb --help message X-Git-Tag: VALGRIND_3_21_0~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03d9229f0bdb28cf35e3bfc98010952594b091cd;p=thirdparty%2Fvalgrind.git Fixup vgdb --help message The --valgrind and the --vargs were missingin the OPTIONS summary. A \n was missing after the --vargs description. --- 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=] [--max-invoke-ms=]\n" " [--port=\n" " [--cmd-time-out=] [-l] [-T] [-D] [-d]\n" -" [--multi]\n" +" [--multi] [--valgrind=] [--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"