1FCATCH(1) Frysk FCATCH(1)
2
3
4
6 fcatch - print a stack back-trace of a program as it crashes
7
9 fcatch [options] {program arg ... }
10
12 fcatch generate stack backtraces from a running application as it
13 crashes, or upon receiving a variety of signals.
14
15 Stack Print Options
16 -number-of-frames count
17 Limit the back-trace to count frames. The default is to limit the
18 back-trace to 10 frames. Specify 0 or "all" to print all frames.
19
20 -lite
21 Perform a light-weight stack backtrace containing only minimal
22 information. Equivalent to -print -.
23
24 -rich
25 Perform a detailed stack back-trace that includes, where possible,
26 inlined function calls, parameter names and values, and
27 debug-names. Equivalent to -print inline,params,debug-names.
28
29 -print print-option,...
30 Specify the level of detail to include in a stack back-trace.
31 print-option can be any of:
32
33 debug-names: use debug information, such as DWARF, to determine the
34 name of functions
35
36 paths: include the full path to source files and libraries
37
38 inline: include in-line function in back-trace
39
40 locals: to include local variables from each frame
41
42 params: include the function parameters
43
44 To negate a print-option prefix it with "-".
45
46 Standard Frysk Options
47 -exe
48 The full path of the executable to read.
49
50 -noexe
51 Do not attempt to read the corresponding executable when loading a
52 core file.
53
54 -sysroot directory
55 The system root directory under which all executables, libraries,
56 and source are located.
57
58 -debug class=level...
59 Set internal debug-tracing of the specified Java class to level
60 (level can be NONE, INFO, WARNING, FINE, and FINEST). If the level
61 is absent, FINE is assumed; if the class is absent, the global
62 level is set.
63
65 fcatch 1234
66
67 fcatch /usr/bin/foo
68
70 frysk(7)
71
73 Report bugs to http://sourceware.org/frysk
74
75
76
77Frysk 0.4-91.fc39 April 2008 FCATCH(1)