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

..07-Jul-2020-

ChangeLogH A D07-Jul-202013.9 KiB457323

ChangeLog.jitH A D07-Jul-2020442 159

Makefile.amH A D07-Jul-20203.9 KiB13367

Makefile.inH A D07-Jul-202022.4 KiB740603

READMEH A D07-Jul-2020985 2418

aclocal.m4H A D07-Jul-202024 KiB668596

alloc.cH A D07-Jul-20204.1 KiB15387

atomic.cH A D07-Jul-20202.9 KiB11453

backtrace-supported.h.inH A D07-Jul-20202.8 KiB6248

backtrace.cH A D07-Jul-20203.1 KiB10951

backtrace.hH A D07-Jul-20208.6 KiB20049

btest.cH A D07-Jul-202015.4 KiB716532

config.h.inH A D07-Jul-20203.3 KiB13596

configureH A D07-Jul-2020430.1 KiB15,15712,689

configure.acH A D07-Jul-202012.1 KiB392348

dwarf.cH A D07-Jul-202076.3 KiB3,0232,241

elf.cH A D07-Jul-202025.8 KiB977711

fileline.cH A D07-Jul-20204.9 KiB195128

filetype.awkH A D07-Jul-2020159 42

internal.hH A D07-Jul-202010.2 KiB293137

mmap.cH A D07-Jul-20207.6 KiB296186

mmapio.cH A D07-Jul-20202.9 KiB10150

nounwind.cH A D07-Jul-20202.3 KiB6726

posix.cH A D07-Jul-20202.8 KiB10149

print.cH A D07-Jul-20202.7 KiB9343

read.cH A D07-Jul-20202.8 KiB9749

simple.cH A D07-Jul-20203.1 KiB10950

sort.cH A D07-Jul-20203.1 KiB10955

state.cH A D07-Jul-20202.4 KiB7330

stest.cH A D07-Jul-20203.4 KiB13892

unknown.cH A D07-Jul-20202.3 KiB6522

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