NameDateSize

..06-Jun-201676

aclocal.m4H A D29-Jan-201424 KiB

alloc.cH A D05-Mar-20164.1 KiB

atomic.cH A D05-Mar-20162.9 KiB

backtrace-supported.h.inH A D05-Mar-20162.8 KiB

backtrace.cH A D05-Mar-20163.1 KiB

backtrace.hH A D05-Mar-20168.6 KiB

btest.cH A D05-Mar-201615.4 KiB

ChangeLogH A D06-Jun-201614.4 KiB

ChangeLog.jitH A D05-Mar-2016442

config.h.inH A D05-Mar-20163.3 KiB

configureH A D05-Mar-2016430.1 KiB

configure.acH A D05-Mar-201612.1 KiB

dwarf.cH A D05-Mar-201676.3 KiB

elf.cH A D06-Jun-201625.8 KiB

fileline.cH A D05-Mar-20164.9 KiB

filetype.awkH A D29-Jan-2014159

internal.hH A D05-Mar-201610.2 KiB

Makefile.amH A D05-Mar-20163.9 KiB

Makefile.inH A D05-Mar-201622.4 KiB

mmap.cH A D05-Mar-20167.6 KiB

mmapio.cH A D05-Mar-20162.9 KiB

nounwind.cH A D05-Mar-20162.3 KiB

posix.cH A D05-Mar-20162.8 KiB

print.cH A D05-Mar-20162.7 KiB

read.cH A D05-Mar-20162.8 KiB

READMEH A D29-Jan-2014985

simple.cH A D05-Mar-20163.1 KiB

sort.cH A D05-Mar-20163.1 KiB

state.cH A D05-Mar-20162.4 KiB

stest.cH A D05-Mar-20163.4 KiB

unknown.cH A D05-Mar-20162.3 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