From 1546ffed499aa40e905485b00293fbb530d7ebd1 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 31 Oct 2015 01:02:26 +0000 Subject: use rb_source_loc and rb_source_location * error.c, eval.c, eval_error.c, gc.c, variable.c, vm.c, vm_eval.c, vm_trace.c: use rb_source_loc/rb_source_location instead of combination of rb_sourcefile/rb_sourcefilename and rb_sourceline. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- vm_trace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm_trace.c') diff --git a/vm_trace.c b/vm_trace.c index 1ce11f9548..bf318b1960 100644 --- a/vm_trace.c +++ b/vm_trace.c @@ -607,11 +607,11 @@ get_event_id(rb_event_flag_t event) static void call_trace_func(rb_event_flag_t event, VALUE proc, VALUE self, ID id, VALUE klass) { - const char *srcfile = rb_sourcefile(); + int line; + const char *srcfile = rb_source_loc(&line); VALUE eventname = rb_str_new2(get_event_name(event)); VALUE filename = srcfile ? rb_str_new2(srcfile) : Qnil; VALUE argv[6]; - int line = rb_sourceline(); rb_thread_t *th = GET_THREAD(); if (!klass) { -- cgit v1.2.3