• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H05-Jun-2018-

.gitignoreH A D05-Jun-201821

LICENSEH A D05-Jun-20181.4 KiB

Makefile.amH A D05-Jun-20185.6 KiB

Makefile.inH A D05-Jun-201837.7 KiB

README.mdH A D05-Jun-20181.3 KiB

acinclude.m4H A D05-Jun-20182.3 KiB

aclocal.m4H A D05-Jun-201826.8 KiB

alloc.cH A D05-Jun-20184.1 KiB

atomic.cH A D05-Jun-20182.9 KiB

backtrace-supported.h.inH A D05-Jun-20183 KiB

backtrace.cH A D05-Jun-20183.6 KiB

backtrace.hH A D05-Jun-20188.2 KiB

btest.cH A D05-Jun-201811 KiB

config.guessH A D05-Jun-201843.1 KiB

config.h.inH A D05-Jun-20183.7 KiB

config.subH A D05-Jun-201834.9 KiB

configureH A D05-Jun-2018409.7 KiB

configure.acH A D05-Jun-201815.5 KiB

dwarf.cH A D05-Jun-201879 KiB

edtest.cH A D05-Jun-20183.7 KiB

edtest2.cH A D05-Jun-20181.7 KiB

elf.cH A D05-Jun-201886.2 KiB

fileline.cH A D05-Jun-20185.1 KiB

filenames.hH A D05-Jun-20181.9 KiB

filetype.awkH A D05-Jun-2018271

install-shH A D05-Jun-201813.7 KiB

internal.hH A D05-Jun-201810.6 KiB

ltmain.shH A D05-Jun-2018219.8 KiB

missingH A D05-Jun-201810.1 KiB

mmap.cH A D05-Jun-20188.3 KiB

mmapio.cH A D05-Jun-20182.9 KiB

move-if-changeH A D05-Jun-20182.6 KiB

nounwind.cH A D05-Jun-20182.3 KiB

pecoff.cH A D05-Jun-201823.4 KiB

posix.cH A D05-Jun-20182.8 KiB

print.cH A D05-Jun-20182.7 KiB

read.cH A D05-Jun-20182.8 KiB

simple.cH A D05-Jun-20183.1 KiB

sort.cH A D05-Jun-20183.1 KiB

state.cH A D05-Jun-20182.4 KiB

stest.cH A D05-Jun-20183.4 KiB

testlib.cH A D05-Jun-20185.7 KiB

testlib.hH A D05-Jun-20183.2 KiB

ttest.cH A D05-Jun-20184.2 KiB

unknown.cH A D05-Jun-20182.4 KiB

xcoff.cH A D05-Jun-201840.5 KiB

ztest.cH A D05-Jun-201814.5 KiB

README.md

1# libbacktrace
2A C library that may be linked into a C/C++ program to produce symbolic backtraces
3
4Initially written by Ian Lance Taylor <iant@golang.org>.
5
6This is version 1.0.
7It is likely that this will always be version 1.0.
8
9The libbacktrace library may be linked into a program or library and
10used to produce symbolic backtraces.
11Sample uses would be to print a detailed backtrace when an error
12occurs or to gather detailed profiling information.
13
14The libbacktrace library is provided under a BSD license.
15See the source files for the exact license text.
16
17The public functions are declared and documented in the header file
18backtrace.h, which should be #include'd by a user of the library.
19
20Building libbacktrace will generate a file backtrace-supported.h,
21which a user of the library may use to determine whether backtraces
22will work.
23See the source file backtrace-supported.h.in for the macros that it
24defines.
25
26As of January 2018, libbacktrace only supports ELF, PE/COFF, and XCOFF
27executables with DWARF debugging information.
28The library is written to make it straightforward to add support for
29other object file and debugging formats.
30
31The library relies on the C++ unwind API defined at
32https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html
33This API is provided by GCC.
34