From 1c53aaad27510aef57b94d2afdb5ba1713c24944 Mon Sep 17 00:00:00 2001 From: ko1 Date: Wed, 7 Feb 2007 01:25:05 +0000 Subject: * this commit is a result of refactoring. only renaming functions, moving definitions place, add/remove prototypes, deleting unused variables and removing yarv.h. This commit doesn't change any behavior of ruby/vm. * yarv.h, common.mk: remove yarv.h (contents are moved to yarvcore.h). * error.c, eval_intern.h: include yarvcore.h instead yarv.h * rename some functions: * debug.[ch]: debug_*() -> ruby_debug_*() * iseq.c: iseq_*() -> rb_iseq_*(), ruby_iseq_disasm() * iseq.c: node_name() -> ruby_node_name() * vm.c: yarv_check_redefinition_opt_method() -> rb_vm_check_redefinition_opt_method() * some refactoring with checking -Wall. * array.c: remove rb_ary_ptr() (unused) and remove unused local variables. * object.c: add a prototype of rb_mod_module_exec(). * eval_intern.h (ruby_cref): set it inline. * eval_load.c (rb_load), yarvcore.c: yarv_load() -> rb_load_internal(). * parse.y: add a prototype of rb_parse_in_eval() (in eval.c). * process.c: add a prototype of rb_thread_stop_timer_thread() (in thread.c). * thread.c: remove raw_gets() function (unused) and fix some format mismatch (format mismatchs have remained yet. this is todo). * thread.c (rb_thread_wait_fd_rw): fix typo on label name. * thread_pthread.ci: comment out codes with USE_THREAD_CACHE. * vm.c (rb_svar, rb_backref_get, rb_backref_get, rb_lastline_get, rb_lastline_set) : moved from yarvcore.c. * vm.c (yarv_init_redefined_flag): add a prototype and rename yarv_opt_method_table to vm_opt_method_table. * vm.c (rb_thread_eval): moved from yarvcore.c. * yarvcore.c: remove unused global variables and fix to use nsdr(). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11652 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- debug.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'debug.h') diff --git a/debug.h b/debug.h index bc50529ac..290dfbc36 100644 --- a/debug.h +++ b/debug.h @@ -15,16 +15,16 @@ #include -VALUE debug_value(int level, int debug_level, char *header, VALUE v); -ID debug_id(int level, int debug_level, char *header, ID id); -void debug_indent(int level, int debug_level, int indent_level); +#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() -#define dpv(h,v) debug_value(-1, 0, h, v) -#define dp(v) debug_value(-1, 0, "", v) -#define dpi(i) debug_id (-1, 0, "", i) -#define bp() debug_breakpoint() - -void gc_check_func(); +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(); #if GCDEBUG == 1 @@ -35,7 +35,7 @@ void gc_check_func(); #define GC_CHECK() \ (printf("** %s:%d gc start\n", __FILE__, __LINE__), \ - gc_check_func(), \ + ruby_debug_gc_check_func(), \ printf("** end\n")) #else -- cgit