NameDateSize

..Today63

aclocal.m4H A D12-Aug-202431.4 KiB

alloc.cH A D12-Aug-20244.3 KiB

allocfail.cH A D12-Aug-20243.4 KiB

allocfail.shH A D12-Aug-20243.1 KiB

atomic.cH A D12-Aug-20242.9 KiB

backtrace-supported.h.inH A D12-Aug-20243 KiB

backtrace.cH A D12-Aug-20243.7 KiB

backtrace.hH A D12-Aug-20248.9 KiB

btest.cH A D12-Aug-202411.5 KiB

ChangeLogH A D12-Aug-202457.4 KiB

ChangeLog.jitH A D12-Aug-2024442

config.h.inH A D12-Aug-20244.6 KiB

configureH A D12-Aug-2024475.1 KiB

configure.acH A D12-Aug-202418 KiB

dwarf.cH A D12-Aug-2024103.9 KiB

edtest.cH A D12-Aug-20243.7 KiB

edtest2.cH A D12-Aug-20241.7 KiB

elf.cH A D12-Aug-2024127.4 KiB

fileline.cH A D12-Aug-20248.6 KiB

filetype.awkH A D12-Aug-2024787

gstdint.hH A D12-Aug-2024875

install-debuginfo-for-buildid.sh.inH A D12-Aug-20242.1 KiB

instrumented_alloc.cH A D12-Aug-20243 KiB

internal.hH A D12-Aug-202412.4 KiB

macho.cH A D12-Aug-202435.2 KiB

Makefile.amH A D12-Aug-202414.8 KiB

Makefile.inH A D12-Aug-2024119.9 KiB

mmap.cH A D12-Aug-20248.4 KiB

mmapio.cH A D12-Aug-20243.1 KiB

mtest.cH A D12-Aug-20249.6 KiB

nounwind.cH A D12-Aug-20242.3 KiB

pecoff.cH A D12-Aug-202423.2 KiB

posix.cH A D12-Aug-20243.1 KiB

print.cH A D12-Aug-20242.7 KiB

read.cH A D12-Aug-20243.1 KiB

READMEH A D12-Aug-2024985

simple.cH A D12-Aug-20243.1 KiB

sort.cH A D12-Aug-20243.1 KiB

state.cH A D12-Aug-20242.4 KiB

stest.cH A D12-Aug-20243.4 KiB

test_format.cH A D12-Aug-20241.9 KiB

testlib.cH A D12-Aug-20245.7 KiB

testlib.hH A D12-Aug-20243.2 KiB

ttest.cH A D12-Aug-20244.2 KiB

unittest.cH A D12-Aug-20242.5 KiB

unknown.cH A D12-Aug-20242.4 KiB

xcoff.cH A D12-Aug-202440.5 KiB

xztest.cH A D12-Aug-202411.7 KiB

ztest.cH A D12-Aug-202414.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