Index of /archives/NetBSD/NetBSD-release-9/src/external/gpl3/gcc/dist/libbacktrace
Name Last modified Size Description
Parent Directory -
CVS/ 2024-02-15 03:48 -
ChangeLog 2020-08-14 19:45 19K
ChangeLog.jit 2016-01-24 15:05 442
Makefile.am 2019-01-19 19:14 4.1K
Makefile.in 2019-01-19 19:14 24K
README 2014-03-01 17:41 1.0K
aclocal.m4 2018-02-02 10:59 24K
alloc.c 2019-01-19 19:14 4.1K
atomic.c 2019-01-19 19:14 2.9K
backtrace-supported.h.in 2019-01-19 19:14 3.0K
backtrace.c 2019-01-19 19:14 3.6K
backtrace.h 2019-01-19 19:14 8.5K
btest.c 2019-01-19 19:14 15K
config.h.in 2016-01-24 15:05 3.3K
configure 2019-01-19 21:10 431K
configure.ac 2019-01-19 19:14 12K
dwarf.c 2019-01-19 19:14 77K
elf.c 2019-01-19 19:14 26K
fileline.c 2019-01-19 19:14 4.9K
filetype.awk 2018-02-02 10:59 271
internal.h 2019-01-19 19:14 10K
mmap.c 2019-01-19 19:14 7.7K
mmapio.c 2019-01-19 19:14 2.9K
nounwind.c 2019-01-19 19:14 2.3K
pecoff.c 2019-01-19 19:14 23K
posix.c 2019-01-19 19:14 2.8K
print.c 2019-01-19 19:14 2.7K
read.c 2019-01-19 19:14 2.8K
simple.c 2019-01-19 19:14 3.1K
sort.c 2019-01-19 19:14 3.1K
state.c 2019-01-19 19:14 2.4K
stest.c 2019-01-19 19:14 3.4K
unknown.c 2019-01-19 19:14 2.3K
The libbacktrace library
Initially written by Ian Lance Taylor <iant@google.com>
The libbacktrace library may be linked into a program or library and
used to produce symbolic backtraces. Sample uses would be to print a
detailed backtrace when an error occurs or to gather detailed
profiling information.
The libbacktrace library is provided under a BSD license. See the
source files for the exact license text.
The public functions are declared and documented in the header file
backtrace.h, which should be #include'd by a user of the library.
Building libbacktrace will generate a file backtrace-supported.h,
which a user of the library may use to determine whether backtraces
will work. See the source file backtrace-supported.h.in for the
macros that it defines.
As of September 2012, libbacktrace only supports ELF executables with
DWARF debugging information. The library is written to make it
straightforward to add support for other object file and debugging
formats.