NameDateSize

..25-May-202468

aclocal.m4H A D10-Apr-202131.4 KiB

alloc.cH A D20-Feb-20234.3 KiB

allocfail.cH A D20-Feb-20233.4 KiB

allocfail.shH A D20-Feb-20233.1 KiB

atomic.cH A D20-Feb-20232.9 KiB

backtrace-supported.h.inH A D20-Feb-20233 KiB

backtrace.cH A D20-Feb-20233.7 KiB

backtrace.hH A D20-Feb-20238.9 KiB

btest.cH A D20-Feb-202311.1 KiB

config.h.inH A D10-Apr-20214.1 KiB

configureH A D20-Feb-2023460 KiB

configure.acH A D20-Feb-202315.9 KiB

dwarf.cH A D20-Feb-2023101.1 KiB

edtest.cH A D20-Feb-20233.7 KiB

edtest2.cH A D20-Feb-20231.7 KiB

elf.cH A D20-Feb-202389.2 KiB

fileline.cH A D20-Feb-20235.1 KiB

filetype.awkH A D19-Aug-2020386

install-debuginfo-for-buildid.sh.inH A D20-Feb-20232 KiB

instrumented_alloc.cH A D20-Feb-20233 KiB

internal.hH A D20-Feb-202311.2 KiB

Makefile.amH A D20-Feb-202312 KiB

Makefile.inH A D20-Feb-2023108.3 KiB

mmap.cH A D20-Feb-20238.3 KiB

mmapio.cH A D20-Feb-20233 KiB

nounwind.cH A D20-Feb-20232.3 KiB

pecoff.cH A D20-Feb-202323.1 KiB

posix.cH A D20-Feb-20232.8 KiB

print.cH A D20-Feb-20232.7 KiB

read.cH A D20-Feb-20233 KiB

READMEH A D26-Sep-2019985

simple.cH A D20-Feb-20233.1 KiB

sort.cH A D20-Feb-20233.1 KiB

state.cH A D20-Feb-20232.4 KiB

stest.cH A D20-Feb-20233.4 KiB

test_format.cH A D20-Feb-20231.9 KiB

testlib.cH A D20-Feb-20235.7 KiB

testlib.hH A D20-Feb-20233.2 KiB

ttest.cH A D20-Feb-20234.2 KiB

unittest.cH A D20-Feb-20232.5 KiB

unknown.cH A D20-Feb-20232.4 KiB

xcoff.cH A D20-Feb-202340.4 KiB

ztest.cH A D20-Feb-202314.7 KiB

README

1The libbacktrace library
2Initially written by Ian Lance Taylor <iant@google.com>
3
4The libbacktrace library may be linked into a program or library and
5used to produce symbolic backtraces.  Sample uses would be to print a
6detailed backtrace when an error occurs or to gather detailed
7profiling information.
8
9The libbacktrace library is provided under a BSD license.  See the
10source files for the exact license text.
11
12The public functions are declared and documented in the header file
13backtrace.h, which should be #include'd by a user of the library.
14
15Building libbacktrace will generate a file backtrace-supported.h,
16which a user of the library may use to determine whether backtraces
17will work.  See the source file backtrace-supported.h.in for the
18macros that it defines.
19
20As of September 2012, libbacktrace only supports ELF executables with
21DWARF debugging information.  The library is written to make it
22straightforward to add support for other object file and debugging
23formats.
24