Home | History | Annotate | only in /src/external/gpl3/gdb.old/dist/libbacktrace
Up to higher level directory
NameDateSize
aclocal.m412-Aug-202431.4K
alloc.c27-Aug-20254.3K
allocfail.c27-Aug-20253.4K
allocfail.sh27-Aug-20253.1K
atomic.c27-Aug-20252.9K
backtrace-supported.h.in27-Aug-20253K
backtrace.c27-Aug-20253.7K
backtrace.h27-Aug-20258.9K
btest.c27-Aug-202511.5K
ChangeLog27-Aug-202566.3K
ChangeLog.jit12-Aug-2024442
config.h.in27-Aug-20254.9K
configure14-Mar-2026481.1K
configure.ac14-Mar-202619.4K
dwarf.c27-Aug-2025104.7K
edtest.c27-Aug-20253.7K
edtest2.c27-Aug-20251.7K
elf.c09-Nov-2025187.8K
fileline.c27-Aug-202510K
filetype.awk12-Aug-2024787
gstdint.h27-Aug-2025873
install-debuginfo-for-buildid.sh.in27-Aug-20252.1K
instrumented_alloc.c27-Aug-20253K
internal.h27-Aug-202512.7K
macho.c27-Aug-202535.2K
Makefile.am27-Aug-202517.9K
Makefile.in27-Aug-2025132.4K
mmap.c27-Aug-20258.4K
mmapio.c27-Aug-20253.1K
mtest.c27-Aug-20259.6K
nounwind.c27-Aug-20252.3K
pecoff.c27-Aug-202523.6K
posix.c27-Aug-20253.1K
print.c27-Aug-20252.7K
read.c27-Aug-20253.1K
README27-Aug-20251.3K
simple.c27-Aug-20253.1K
sort.c27-Aug-20253.1K
state.c27-Aug-20252.4K
stest.c27-Aug-20253.4K
test_format.c27-Aug-20251.9K
testlib.c27-Aug-20255.7K
testlib.h27-Aug-20253.2K
ttest.c27-Aug-20254.2K
unittest.c27-Aug-20252.5K
unknown.c27-Aug-20252.4K
xcoff.c27-Aug-202540.5K
xztest.c27-Aug-202511.7K
zstdtest.c27-Aug-202514.1K
ztest.c27-Aug-202514.7K

README

      1 The libbacktrace library
      2 Initially written by Ian Lance Taylor <iant (a] golang.org>
      3 
      4 The libbacktrace library may be linked into a program or library and
      5 used to produce symbolic backtraces.
      6 Sample uses would be to print a detailed backtrace when an error
      7 occurs or to gather detailed profiling information.
      8 In general the functions provided by this library are async-signal-safe,
      9 meaning that they may be safely called from a signal handler.
     10 
     11 The libbacktrace library is provided under a BSD license.
     12 See the source files for the exact license text.
     13 
     14 The public functions are declared and documented in the header file
     15 backtrace.h, which should be #include'd by a user of the library.
     16 
     17 Building libbacktrace will generate a file backtrace-supported.h,
     18 which a user of the library may use to determine whether backtraces
     19 will work.
     20 See the source file backtrace-supported.h.in for the macros that it
     21 defines.
     22 
     23 As of October 2020, libbacktrace supports ELF, PE/COFF, Mach-O, and
     24 XCOFF executables with DWARF debugging information.
     25 In other words, it supports GNU/Linux, *BSD, macOS, Windows, and AIX.
     26 The library is written to make it straightforward to add support for
     27 other object file and debugging formats.
     28 
     29 The library relies on the C++ unwind API defined at
     30 https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html
     31 This API is provided by GCC and clang.
     32