File: backtrace.c

package info (click to toggle)
storm-lang 0.7.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,100 kB
  • sloc: ansic: 261,471; cpp: 140,438; sh: 14,891; perl: 9,846; python: 2,525; lisp: 2,504; asm: 860; makefile: 678; pascal: 70; java: 52; xml: 37; awk: 12
file content (23 lines) | stat: -rw-r--r-- 733 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "stdafx.h"
#include "backtrace.h"

#if defined(POSIX) && !defined(NO_LIBBACKTRACE)

// Seems to be needed to build properly. Likely would be added by the configure script.
#include <link.h>

// Include all files required by the backtrace library, so we do not have to compile it separatly.
#include "Linux/backtrace/atomic.c"
#include "Linux/backtrace/backtrace.c"
#include "Linux/backtrace/dwarf.c"
#include "Linux/backtrace/elf.c"
#include "Linux/backtrace/fileline.c"
#include "Linux/backtrace/mmap.c"
#include "Linux/backtrace/mmapio.c"
#include "Linux/backtrace/posix.c"
#include "Linux/backtrace/print.c"
#include "Linux/backtrace/simple.c"
#include "Linux/backtrace/sort.c"
#include "Linux/backtrace/state.c"

#endif