summaryrefslogtreecommitdiff
path: root/libs/pbd/stacktrace.cc
blob: a653fe3033c487e1d5d49d87161dadceb9001d16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <pbd/stacktrace.h>
#include <iostream>

/* Obtain a backtrace and print it to stdout. */

#ifdef HAVE_EXECINFO

#include <execinfo.h>
#include <stdlib.h>

void
PBD::stacktrace (std::ostream& out, int levels)
{
	void *array[200];
	size_t size;
	char **strings;
	size_t i;
     
	size = backtrace (array, 200);
	strings = backtrace_symbols (array, size);
     
	if (strings) {

		printf ("Obtained %zd stack frames.\n", size);
		
		for (i = 0; i < size && (levels == 0 || i < levels); i++) {
			out << strings[i] << std::endl;
		}
		
		free (strings);
	}
}

#else

void
PBD::stacktrace (std::ostream& out, int levels)
{
	out << "stack tracing is not enabled on this platform" << std::endl;
}

#endif /* HAVE_EXECINFO */