Das BlinkenSendButtons
[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 void
24 PBD::trace_twb ()
25 {
26 }
27
28 /* Obtain a backtrace and print it to stdout. */
29
30 #ifdef HAVE_EXECINFO
31
32 #include <execinfo.h>
33
34 void
35 PBD::stacktrace (std::ostream& out, int levels)
36 {
37         void *array[200];
38         size_t size;
39         char **strings;
40         size_t i;
41      
42         size = backtrace (array, 200);
43         strings = backtrace_symbols (array, size);
44      
45         if (strings) {
46
47                 printf ("Obtained %zd stack frames.\n", size);
48                 
49                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
50                         out << strings[i] << std::endl;
51                 }
52                 
53                 free (strings);
54         }
55 }
56
57 #else
58
59 void
60 PBD::stacktrace (std::ostream& out, int levels)
61 {
62         out << "stack tracing is not enabled on this platform" << std::endl;
63 }
64
65 void
66 c_stacktrace ()
67 {
68         PBD::stacktrace (std::cout);
69 }
70
71 #endif /* HAVE_EXECINFO */