From b3c4e5348f02320789eac8eff5ec4128b5c5262b Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 2 Feb 2007 16:26:04 +0000 Subject: * call_cfunc.ci, compile.c, compile.h, debug.h, eval.c, eval_error.h, eval_jump.h, eval_load.c, eval_thread.c, gc.c, insnhelper.h, insns.def, iseq.c, main.c, numeric.c, parse.y, range.c, regenc.h, ruby.h, signal.c, thread.c, thread_win32.ci, vm.c, vm.h, vm_dump.c, vm_evalbody.ci, yarvcore.c, yarvcore.h: fixed indents and non-C90 comments. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11620 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index d5dd8ae89..ff9bf9ceb 100644 --- a/thread.c +++ b/thread.c @@ -657,7 +657,7 @@ yarv_thread_execute_interrupts(yarv_thread_t *th) void rb_gc_mark_threads() { - // TODO: remove + /* TODO: remove */ } /*****************************************************/ @@ -678,7 +678,7 @@ yarv_thread_raise(int argc, VALUE *argv, yarv_thread_t *th) } exc = rb_make_exception(argc, argv); - // TODO: need synchronization if run threads in parallel + /* TODO: need synchronization if run threads in parallel */ th->throwed_errinfo = exc; rb_thread_ready(th); return Qnil; -- cgit