Merged with trunk R992.
Completely untested other than it compiles, runs, and records somewhat (need to merge again). git-svn-id: svn://localhost/ardour2/branches/midi@999 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
#include <stdlib.h>
|
||||
|
||||
void
|
||||
PBD::stacktrace (std::ostream& out)
|
||||
PBD::stacktrace (std::ostream& out, int levels)
|
||||
{
|
||||
void *array[200];
|
||||
size_t size;
|
||||
@@ -23,7 +23,7 @@ PBD::stacktrace (std::ostream& out)
|
||||
|
||||
printf ("Obtained %zd stack frames.\n", size);
|
||||
|
||||
for (i = 0; i < size; i++) {
|
||||
for (i = 0; i < size && (levels == 0 || i < levels); i++) {
|
||||
out << strings[i] << std::endl;
|
||||
}
|
||||
|
||||
@@ -34,7 +34,7 @@ PBD::stacktrace (std::ostream& out)
|
||||
#else
|
||||
|
||||
void
|
||||
PBD::stacktrace (std::ostream& out)
|
||||
PBD::stacktrace (std::ostream& out, int levels)
|
||||
{
|
||||
out << "stack tracing is not enabled on this platform" << std::endl;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user