summaryrefslogtreecommitdiff
path: root/trunk/debug.h
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:02:05 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-25 15:02:05 +0000
commit0dc342de848a642ecce8db697b8fecd83a63e117 (patch)
tree2b7ed4724aff1f86073e4740134bda9c4aac1a39 /trunk/debug.h
parentef70cf7138ab8034b5b806f466e4b484b24f0f88 (diff)
added tag v1_9_0_4
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v1_9_0_4@18845 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'trunk/debug.h')
-rw-r--r--trunk/debug.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/trunk/debug.h b/trunk/debug.h
new file mode 100644
index 0000000000..5c4b19a78b
--- /dev/null
+++ b/trunk/debug.h
@@ -0,0 +1,32 @@
+/**********************************************************************
+
+ debug.h - YARV Debug function interface
+
+ $Author$
+ created at: 04/08/25 02:33:49 JST
+
+ Copyright (C) 2004-2007 Koichi Sasada
+
+**********************************************************************/
+
+#ifndef RUBY_DEBUG_H
+#define RUBY_DEBUG_H
+
+#include "ruby/ruby.h"
+#include "ruby/node.h"
+
+#define dpv(h,v) ruby_debug_print_value(-1, 0, h, v)
+#define dp(v) ruby_debug_print_value(-1, 0, "", v)
+#define dpi(i) ruby_debug_print_id(-1, 0, "", i)
+#define dpn(n) ruby_debug_print_node(-1, 0, "", n)
+
+#define bp() ruby_debug_breakpoint()
+
+VALUE ruby_debug_print_value(int level, int debug_level, const char *header, VALUE v);
+ID ruby_debug_print_id(int level, int debug_level, const char *header, ID id);
+NODE *ruby_debug_print_node(int level, int debug_level, const char *header, const NODE *node);
+int ruby_debug_print_indent(int level, int debug_level, int indent_level);
+void ruby_debug_breakpoint(void);
+void ruby_debug_gc_check_func(void);
+
+#endif /* RUBY_DEBUG_H */