diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 08:13:39 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 08:13:39 +0000 |
commit | 5c00dd28c5e16c85ed2ada37cae3b8be3a08ef3e (patch) | |
tree | 39779c15ce5b0c846c78b6afb6a85bf5f077ee9b /gc.h | |
parent | 5bb7c8612fc0904070aa9cfad096e3c462877903 (diff) |
* gc.h: extern variable should not be initialized.
* thread_pthread.c: add a parameter.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.h')
-rw-r--r-- | gc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p)); #endif #if RUBY_MARK_FREE_DEBUG -extern int ruby_gc_debug_indent = 0; +extern int ruby_gc_debug_indent; static void rb_gc_debug_indent(void) |