Message ID | 20210519170945.21941-23-dwagner@suse.de |
---|---|
State | New |
Headers | show |
Series | Rename --output to --json | expand |
On Wed, 19 May 2021, Daniel Wagner wrote: > Add the newly introduced --json command line to the man page. > > Signed-off-by: Daniel Wagner <dwagner@suse.de> > --- > src/ssdd/ssdd.8 | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/src/ssdd/ssdd.8 b/src/ssdd/ssdd.8 > index 5c29d0abb732..a3b9d790dec4 100644 > --- a/src/ssdd/ssdd.8 > +++ b/src/ssdd/ssdd.8 > @@ -3,7 +3,7 @@ > ssdd \- have a tracer do a bunch of PTRACE_SINGLESTEPs > .SH SYNOPSIS > .LP > -ssdd [-f|--forks NUM] [-h|--help] [-i|--iters NUM] > +ssdd [-f|--forks NUM] [-h|--help] [-i|--iters NUM] [--json FILENAME] > .SH DESCRIPTION > Have a tracer do a bunch of PTRACE_SINGLESTEPs against a tracee as > fast as possible. Create several of these tracer/tracee pairs and > @@ -25,6 +25,9 @@ number of PTRACE_SINGLESTEP iterations to do before declaring > success, for each tracer tracee pair set up. > .br > Default is 10,000. > +.TP > +.B \-\-json=FILENAME > +Write final results into FILENAME, JSON formatted. > .SH AUTHOR > ssdd was written by Joe Korty <joe.korty@concurrent-rt.com> > .PP > -- > 2.31.1 > > Signed-off-by: John Kacur <jkacur@redhat.com>
diff --git a/src/ssdd/ssdd.8 b/src/ssdd/ssdd.8 index 5c29d0abb732..a3b9d790dec4 100644 --- a/src/ssdd/ssdd.8 +++ b/src/ssdd/ssdd.8 @@ -3,7 +3,7 @@ ssdd \- have a tracer do a bunch of PTRACE_SINGLESTEPs .SH SYNOPSIS .LP -ssdd [-f|--forks NUM] [-h|--help] [-i|--iters NUM] +ssdd [-f|--forks NUM] [-h|--help] [-i|--iters NUM] [--json FILENAME] .SH DESCRIPTION Have a tracer do a bunch of PTRACE_SINGLESTEPs against a tracee as fast as possible. Create several of these tracer/tracee pairs and @@ -25,6 +25,9 @@ number of PTRACE_SINGLESTEP iterations to do before declaring success, for each tracer tracee pair set up. .br Default is 10,000. +.TP +.B \-\-json=FILENAME +Write final results into FILENAME, JSON formatted. .SH AUTHOR ssdd was written by Joe Korty <joe.korty@concurrent-rt.com> .PP
Add the newly introduced --json command line to the man page. Signed-off-by: Daniel Wagner <dwagner@suse.de> --- src/ssdd/ssdd.8 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)