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

..07-May-2022-

ChangeLogH A D04-Mar-202029.4 KiB958686

ChangeLog.jitH A D04-Mar-2020442 159

Makefile.amH A D04-Mar-20205.4 KiB198112

Makefile.inH A D04-Mar-202032.7 KiB922765

READMEH A D04-Mar-2020985 2418

aclocal.m4H A D04-Mar-202024.3 KiB686609

alloc.cH A D04-Mar-20204.1 KiB15790

atomic.cH A D04-Mar-20202.9 KiB11453

backtrace-supported.h.inH A D04-Mar-20203 KiB6751

backtrace.cH A D04-Mar-20203.6 KiB13066

backtrace.hH A D04-Mar-20208.5 KiB20049

btest.cH A D04-Mar-202011 KiB501370

config.h.inH A D04-Mar-20204.1 KiB165116

configureH A D04-Mar-2020448 KiB15,84413,305

configure.acH A D04-Mar-202015.6 KiB512456

dwarf.cH A D04-Mar-202076.9 KiB3,0422,257

edtest.cH A D04-Mar-20203.7 KiB12263

edtest2.cH A D04-Mar-20201.7 KiB446

elf.cH A D04-Mar-202086.2 KiB3,3412,454

fileline.cH A D04-Mar-20205.1 KiB202135

filetype.awkH A D04-Mar-2020386 96

internal.hH A D04-Mar-202010.6 KiB305144

mmap.cH A D04-Mar-20208.3 KiB326209

mmapio.cH A D04-Mar-20202.9 KiB10150

nounwind.cH A D04-Mar-20202.3 KiB6726

pecoff.cH A D04-Mar-202023.4 KiB942683

posix.cH A D04-Mar-20202.8 KiB10149

print.cH A D04-Mar-20202.7 KiB9343

read.cH A D04-Mar-20202.8 KiB9749

simple.cH A D04-Mar-20203.1 KiB10950

sort.cH A D04-Mar-20203.1 KiB10955

state.cH A D04-Mar-20202.4 KiB7330

stest.cH A D04-Mar-20203.4 KiB13892

testlib.cH A D04-Mar-20205.7 KiB235155

testlib.hH A D04-Mar-20203.2 KiB11152

ttest.cH A D04-Mar-20204.2 KiB16296

unknown.cH A D04-Mar-20202.4 KiB6623

xcoff.cH A D04-Mar-202040.5 KiB1,6431,218

ztest.cH A D04-Mar-202014.5 KiB538432

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