aboutsummaryrefslogtreecommitdiffstats
path: root/liberror-backtrace.7
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-04-14 14:31:37 +0200
committerMattias Andrée <maandree@kth.se>2019-04-14 14:31:37 +0200
commita13ab1979b3ebc104522def69ccf8020c3e1feb6 (patch)
treebec92c5b42cfefa2034a3fc800c25f1fb86f1e81 /liberror-backtrace.7
parentEnable prefetching backtace (diff)
downloadliberror-backtrace-a13ab1979b3ebc104522def69ccf8020c3e1feb6.tar.gz
liberror-backtrace-a13ab1979b3ebc104522def69ccf8020c3e1feb6.tar.bz2
liberror-backtrace-a13ab1979b3ebc104522def69ccf8020c3e1feb6.tar.xz
Add liberror-backtrace1.0
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--liberror-backtrace.760
1 files changed, 60 insertions, 0 deletions
diff --git a/liberror-backtrace.7 b/liberror-backtrace.7
new file mode 100644
index 0000000..af489cf
--- /dev/null
+++ b/liberror-backtrace.7
@@ -0,0 +1,60 @@
+.TH LIBERROR-BACKTRACE 7 2019-04-14 liberror
+.SH NAME
+liberror-backtrace \- implementation of backtrace for liberror
+.SH DESCRIPTION
+The
+.B liberror-backtrace
+library implements the backtrace functionality for the
+.B liberror
+library. Specifically, it replaces the implementations of the
+.BR liberror_save_backtrace (3)
+and
+.BR liberror_print_backtrace (3)
+functions with implementations that actually save and print
+the backtrace. There is no header files associated with the
+.B liberror-backtrace
+library it is simply used by linking. If
+.B liberror
+is dynamically linked,
+.B liberror-backtrace shall
+be linked with
+.I -lerror-backtrace -ldw -lunwind
+and
+.I -lerror-backtrace
+shall be specified before
+.IR -lerror .
+If
+.B liberror
+is statically linked,
+.B liberror-backtrace shall
+be linked with
+.I -Wl,--whole-archive -lerror-backtrace -Wl,--no-whole-archive -ldw -lunwind
+and it does not matter where whether
+.I -lerror-backtrace
+is specified before or after
+.IR -lerror .
+Thus, a library using
+.I -lerror
+can always be linked with
+.I -Wl,--whole-archive -lerror-backtrace -Wl,--no-whole-archive -ldw -lunwind -lerror
+for
+.B liberror
+with backtrace support. Alternatively, if
+.B liberror
+is dynamically linked,
+.B liberror-backtrace
+can be preloaded with the
+.I LD_PRELOAD
+environment variable.
+.SH EXAMPLES
+None.
+.SH APPLICATION USAGE
+None.
+.SH RATIONALE
+None.
+.SH FUTURE DIRECTIONS
+None.
+.SH NOTES
+None.
+.SH SEE ALSO
+.BR liberror (7)