the useless commit: add copyright messages to all(?) files that need it
[ardour.git] / libs / pbd / stacktrace.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <pbd/stacktrace.h>
21 #include <iostream>
22
23 /* Obtain a backtrace and print it to stdout. */
24
25 #ifdef HAVE_EXECINFO
26
27 #include <execinfo.h>
28 #include <stdlib.h>
29
30 void
31 PBD::stacktrace (std::ostream& out, int levels)
32 {
33         void *array[200];
34         size_t size;
35         char **strings;
36         size_t i;
37      
38         size = backtrace (array, 200);
39         strings = backtrace_symbols (array, size);
40      
41         if (strings) {
42
43                 printf ("Obtained %zd stack frames.\n", size);
44                 
45                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
46                         out << strings[i] << std::endl;
47                 }
48                 
49                 free (strings);
50         }
51 }
52
53 #else
54
55 void
56 PBD::stacktrace (std::ostream& out, int levels)
57 {
58         out << "stack tracing is not enabled on this platform" << std::endl;
59 }
60
61 void
62 c_stacktrace ()
63 {
64         PBD::stacktrace (std::cout);
65 }
66
67 #endif /* HAVE_EXECINFO */