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

..07-May-2022-

ChangeLogH A D08-Oct-202145.4 KiB1,4411,047

ChangeLog.jitH A D08-Oct-2021442 159

Makefile.amH A D08-Oct-202112 KiB466292

Makefile.inH A D08-Oct-2021108.3 KiB2,3281,987

READMEH A D08-Oct-2021985 2418

aclocal.m4H A D08-Oct-202131.4 KiB868785

alloc.cH A D08-Oct-20214.3 KiB16896

allocfail.cH A D08-Oct-20213.4 KiB13780

allocfail.shH A D08-Oct-20213.1 KiB10538

atomic.cH A D08-Oct-20212.9 KiB11453

backtrace-supported.h.inH A D08-Oct-20213 KiB6751

backtrace.cH A D08-Oct-20213.7 KiB13066

backtrace.hH A D08-Oct-20218.9 KiB20649

btest.cH A D08-Oct-202111.1 KiB502371

config.h.inH A D08-Oct-20214.1 KiB167118

configureH A D08-Oct-2021460 KiB16,30613,680

configure.acH A D08-Oct-202115.9 KiB517459

dwarf.cH A D08-Oct-2021101.1 KiB3,9482,993

edtest.cH A D08-Oct-20213.7 KiB12162

edtest2.cH A D08-Oct-20211.7 KiB446

elf.cH A D08-Oct-202189.2 KiB3,4362,541

fileline.cH A D08-Oct-20215.1 KiB202135

filetype.awkH A D08-Oct-2021386 96

install-debuginfo-for-buildid.sh.inH A D08-Oct-20212 KiB6620

instrumented_alloc.cH A D08-Oct-20213 KiB11559

internal.hH A D08-Oct-202111.2 KiB339165

mmap.cH A D08-Oct-20218.3 KiB328211

mmapio.cH A D08-Oct-20213 KiB10755

nounwind.cH A D08-Oct-20212.3 KiB6726

pecoff.cH A D08-Oct-202123.1 KiB928673

posix.cH A D08-Oct-20212.8 KiB10149

print.cH A D08-Oct-20212.7 KiB9343

read.cH A D08-Oct-20213 KiB10354

simple.cH A D08-Oct-20213.1 KiB10950

sort.cH A D08-Oct-20213.1 KiB10955

state.cH A D08-Oct-20212.4 KiB7330

stest.cH A D08-Oct-20213.4 KiB13892

test_format.cH A D08-Oct-20211.9 KiB5616

testlib.cH A D08-Oct-20215.7 KiB235155

testlib.hH A D08-Oct-20213.2 KiB11152

ttest.cH A D08-Oct-20214.2 KiB16296

unittest.cH A D08-Oct-20212.5 KiB9344

unknown.cH A D08-Oct-20212.4 KiB6623

xcoff.cH A D08-Oct-202140.4 KiB1,6071,200

ztest.cH A D08-Oct-202114.7 KiB542436

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