diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-10 08:57:02 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-10-10 08:57:02 +0000 |
| commit | 9ae9668ec9b9330c3656884667fa044d74f9fc61 (patch) | |
| tree | d90e76a61f5668928251e941f8100194b782d847 | |
| parent | 75082f37650bc74deca2556a9ee6bb4873c06f13 (diff) | |
| download | ruby-9ae9668ec9b9330c3656884667fa044d74f9fc61.tar.gz ruby-9ae9668ec9b9330c3656884667fa044d74f9fc61.tar.xz ruby-9ae9668ec9b9330c3656884667fa044d74f9fc61.zip | |
* eval.c (rb_threadptr_errinfo): renamed.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25283 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | eval_intern.h | 2 | ||||
| -rw-r--r-- | thread.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/eval_intern.h b/eval_intern.h index c5b1fd8b2..e37905c20 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -212,7 +212,7 @@ void rb_thread_terminate_all(void); VALUE rb_vm_top_self(); VALUE rb_vm_cbase(void); void rb_trap_restore_mask(void); -VALUE rb_rubylevel_thread_errinfo(rb_thread_t *); +VALUE rb_threadptr_errinfo(rb_thread_t *); #ifndef CharNext /* defined as CharNext[AW] on Windows. */ #define CharNext(p) ((p) + mblen(p, RUBY_MBCHAR_MAXSIZE)) @@ -1248,7 +1248,7 @@ rb_threadptr_execute_interrupts_rec(rb_thread_t *th, int sched_depth) } else { if (err == eReRaiseSignal) { - err = rb_rubylevel_thread_errinfo(th); + err = rb_threadptr_errinfo(th); err = rb_make_exception(NIL_P(err) ? 0 : 1, &err); } rb_exc_raise(err); |
