summaryrefslogtreecommitdiff
path: root/src/debug.cpp
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-11-25 17:42:12 +0200
committerPerttu Ahola <celeron55@gmail.com>2011-11-29 19:13:51 +0200
commit6153a2fb104a2b4eb88885690f3d5e1826320643 (patch)
tree5f8f7d564d86d557034d2a15fecf9bd329587417 /src/debug.cpp
parente5650bb54917ead2dccac9b46dfa1a00cd737694 (diff)
downloadminetest-6153a2fb104a2b4eb88885690f3d5e1826320643.tar.gz
minetest-6153a2fb104a2b4eb88885690f3d5e1826320643.tar.bz2
minetest-6153a2fb104a2b4eb88885690f3d5e1826320643.zip
Improve debug stack printing interface
Diffstat (limited to 'src/debug.cpp')
-rw-r--r--src/debug.cpp35
1 files changed, 34 insertions, 1 deletions
diff --git a/src/debug.cpp b/src/debug.cpp
index befd73a38..ad02c5110 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -101,7 +101,7 @@ void DebugStack::print(FILE *file, bool everything)
for(int i=0; i<stack_max_i; i++)
{
if(i == stack_i && everything == false)
- continue;
+ break;
if(i < stack_i)
fprintf(file, "#%d %s\n", i, stack[i]);
@@ -113,6 +113,24 @@ void DebugStack::print(FILE *file, bool everything)
fprintf(file, "Probably overflown.\n");
}
+void DebugStack::print(std::ostream &os, bool everything)
+{
+ os<<"DEBUG STACK FOR THREAD "<<(unsigned long)threadid<<": "<<std::endl;
+
+ for(int i=0; i<stack_max_i; i++)
+ {
+ if(i == stack_i && everything == false)
+ break;
+
+ if(i < stack_i)
+ os<<"#"<<i<<" "<<stack[i]<<std::endl;
+ else
+ os<<"(Leftover data: #"<<i<<" "<<stack[i]<<")"<<std::endl;
+ }
+
+ if(stack_i == DEBUG_STACK_SIZE)
+ os<<"Probably overflown."<<std::endl;
+}
core::map<threadid_t, DebugStack*> g_debug_stacks;
JMutex g_debug_stacks_mutex;
@@ -122,6 +140,21 @@ void debug_stacks_init()
g_debug_stacks_mutex.Init();
}
+void debug_stacks_print_to(std::ostream &os)
+{
+ JMutexAutoLock lock(g_debug_stacks_mutex);
+
+ os<<"Debug stacks:"<<std::endl;
+
+ for(core::map<threadid_t, DebugStack*>::Iterator
+ i = g_debug_stacks.getIterator();
+ i.atEnd() == false; i++)
+ {
+ DebugStack *stack = i.getNode()->getValue();
+ stack->print(os, false);
+ }
+}
+
void debug_stacks_print()
{
JMutexAutoLock lock(g_debug_stacks_mutex);