From 52ecaf65b0ff40492c5a85cdd9f5cd34201b4a0e Mon Sep 17 00:00:00 2001 From: ko1 Date: Fri, 20 Apr 2007 01:34:41 +0000 Subject: [PATCH] * eval_intern.h: add prototypes of rb_sourceline() and rb_sourcefile(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12200 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ eval_intern.h | 3 +++ 2 files changed, 8 insertions(+) diff --git a/ChangeLog b/ChangeLog index 65c156553b..1050d3b850 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 20 10:33:23 2007 Koichi Sasada + + * eval_intern.h: add prototypes of rb_sourceline() and + rb_sourcefile(). + Fri Apr 20 02:37:48 2007 Nobuyoshi Nakada * eval.c (ruby_cleanup): re-send signal. [ruby-dev:30516] diff --git a/eval_intern.h b/eval_intern.h index 8b2c972631..0cb4006d73 100644 --- a/eval_intern.h +++ b/eval_intern.h @@ -190,6 +190,9 @@ extern VALUE sysstack_error; void rb_thread_cleanup _((void)); void rb_thread_wait_other_threads _((void)); +int rb_sourceline(void); +const char *rb_sourcefile(void); + int thread_set_raised(rb_thread_t *th); int thread_reset_raised(rb_thread_t *th);