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

..03-May-2022-

config/H03-May-2022-7,9207,095

.gitignoreH A D22-May-201821 65

LICENSEH A D22-May-20181.4 KiB3024

Makefile.amH A D22-May-20185.6 KiB207117

Makefile.inH A D22-May-201837.7 KiB1,022858

README.mdH A D22-May-20181.3 KiB3425

acinclude.m4H A D22-May-20182.3 KiB7368

aclocal.m4H A D22-May-201826.8 KiB768681

alloc.cH A D22-May-20184.1 KiB15790

atomic.cH A D22-May-20182.9 KiB11453

backtrace-supported.h.inH A D22-May-20183 KiB6751

backtrace.cH A D22-May-20183.6 KiB13066

backtrace.hH A D22-May-20188.2 KiB18343

btest.cH A D22-May-201811 KiB501370

config.guessH A D22-May-201843.8 KiB1,5311,321

config.h.inH A D22-May-20183.7 KiB150106

config.subH A D23-May-201834.9 KiB1,7951,652

configureH A D23-May-2018409.8 KiB14,36211,284

configure.acH A D23-May-201815.6 KiB513458

dwarf.cH A D22-May-201879 KiB3,1272,335

edtest.cH A D22-May-20183.7 KiB12263

edtest2.cH A D22-May-20181.7 KiB446

elf.cH A D22-May-201886.2 KiB3,3412,454

fileline.cH A D22-May-20185.1 KiB202135

filenames.hH A D22-May-20181.9 KiB5014

filetype.awkH A D23-May-2018647 1210

install-shH A D22-May-201813.7 KiB528351

internal.hH A D22-May-201810.6 KiB305144

ltmain.shH A D23-May-2018219.8 KiB7,8756,016

macho.cH A D28-May-201843.2 KiB1,4191,154

missingH A D22-May-201810.1 KiB332243

mmap.cH A D22-May-20188.3 KiB326209

mmapio.cH A D22-May-20182.9 KiB10150

move-if-changeH A D22-May-20182.6 KiB8441

nounwind.cH A D22-May-20182.3 KiB6726

pecoff.cH A D23-May-201823.6 KiB944683

posix.cH A D22-May-20182.8 KiB10149

print.cH A D22-May-20182.7 KiB9343

read.cH A D22-May-20182.8 KiB9749

simple.cH A D22-May-20183.1 KiB10950

sort.cH A D22-May-20183.1 KiB10955

state.cH A D22-May-20182.4 KiB7330

stest.cH A D22-May-20183.4 KiB13892

testlib.cH A D22-May-20185.7 KiB235155

testlib.hH A D22-May-20183.2 KiB11152

ttest.cH A D22-May-20184.2 KiB16296

unknown.cH A D22-May-20182.4 KiB6623

xcoff.cH A D22-May-201840.5 KiB1,6431,218

ztest.cH A D22-May-201814.5 KiB538432

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