mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
33163ad123
Huehner <stefan at huehner.org>. [ruby-core:10543] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12095 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
/**********************************************************************
|
|
|
|
debug.h - YARV Debug function interface
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: 04/08/25 02:33:49 JST
|
|
|
|
Copyright (C) 2004-2006 Koichi Sasada
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef _DEBUG_H_INCLUDED_
|
|
#define _DEBUG_H_INCLUDED_
|
|
|
|
#include <ruby.h>
|
|
|
|
#define dpv(h,v) ruby_debug_value(-1, 0, h, v)
|
|
#define dp(v) ruby_debug_value(-1, 0, "", v)
|
|
#define dpi(i) ruby_debug_id (-1, 0, "", i)
|
|
#define bp() ruby_debug_breakpoint()
|
|
|
|
VALUE ruby_debug_value(int level, int debug_level, char *header, VALUE v);
|
|
ID ruby_debug_id(int level, int debug_level, char *header, ID id);
|
|
void ruby_debug_indent(int level, int debug_level, int indent_level);
|
|
void ruby_debug_breakpoint(void);
|
|
void ruby_debug_gc_check_func(void);
|
|
|
|
#if GCDEBUG == 1
|
|
|
|
#define GC_CHECK() \
|
|
gc_check_func()
|
|
|
|
#elif GCDEBUG == 2
|
|
|
|
#define GC_CHECK() \
|
|
(printf("** %s:%d gc start\n", __FILE__, __LINE__), \
|
|
ruby_debug_gc_check_func(), \
|
|
printf("** end\n"))
|
|
|
|
#else
|
|
|
|
#define GC_CHECK()
|
|
|
|
#endif
|
|
|
|
#endif /* _DEBUG_H_INCLUDED_ */
|