summaryrefslogtreecommitdiffstats
path: root/src/Backtrace
diff options
context:
space:
mode:
authorKarel Klic <kklic@redhat.com>2009-11-24 15:03:24 +0100
committerKarel Klic <kklic@redhat.com>2009-11-24 15:03:24 +0100
commit8f2b7508ff42d637e4a3be5f24af3a5915515b92 (patch)
tree7f1011392d7ce72252362ed09de34e2949effd25 /src/Backtrace
parent4d725ba7f708087099496145a953064aded60365 (diff)
downloadabrt-8f2b7508ff42d637e4a3be5f24af3a5915515b92.tar.gz
abrt-8f2b7508ff42d637e4a3be5f24af3a5915515b92.tar.xz
abrt-8f2b7508ff42d637e4a3be5f24af3a5915515b92.zip
abrt-backtrace initial manual page
Diffstat (limited to 'src/Backtrace')
-rw-r--r--src/Backtrace/abrt-backtrace.152
1 files changed, 52 insertions, 0 deletions
diff --git a/src/Backtrace/abrt-backtrace.1 b/src/Backtrace/abrt-backtrace.1
new file mode 100644
index 00000000..ff7c2be2
--- /dev/null
+++ b/src/Backtrace/abrt-backtrace.1
@@ -0,0 +1,52 @@
+.TH abrt\-backtrace "1" "23 Nov 2009" ""
+.SH NAME
+abrt\-backtrace \- a backtrace analyzer for abrt
+.SH SYNOPSIS
+.B abrt\-backtrace
+[option]... [FILE]
+.SH DESCRIPTION
+.I abrt\-backtrace
+is a command line tool that analyzes backtraces produced by
+GDB and provides their textual representation useful for
+crash duplication detection.
+
+By default, abrt\-backtrace prints the backtrace tree created by
+parsing the input file.
+
+.SH OPTIONS
+.B Basic startup options
+.IP "\-V, \-\-version"
+Displays version of abrt\-backtrace.
+.IP "\-?, \-\-help"
+Print a help message describing all of abrt-backtrace’s command-line options.
+
+.PP
+.B Actions
+.IP "\-i, \-\-independent"
+Prints independent backtrace fallback. The "independent backtrace"
+is used as a fallback internal representation of backtrace
+when the internal parser fails to process the input due to
+unsupported format.
+
+.PP
+.B Various options
+.IP "\-n, \-\-single-thread"
+Removes all threads except the one that caused the crash from
+the internal representation of the backtrace.
+.IP "\-d=N, \-\-frame-depth=N"
+Display only the top N frames in every thread.
+Frames that are a part of system error handling do not count to the N.
+So more than N frames can be displayed, but N of them are useful for examination.
+N must be larger than 1.
+.IP "\-r, \-\-remove-exit-handlers"
+Do not display exit handlers and frames that comes after them in the backtrace.
+.IP "\-p, \-\-debug-parser"
+Prints debug information when parsing the backtrace.
+.IP "\-s, \-\-debug-scanner"
+Prints debug information when scanning the input file for the parser.
+
+.SH "SEE ALSO"
+.IR abrtd (8),
+.IR abrt.conf (5),
+.IR abrt-cli (1),
+.IR abrt-plugins (7)