summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-25 05:14:33 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-04-25 05:14:33 +0000
commitec4a7ccf86c6be8d54934dd70c8e69fed328a612 (patch)
tree9fc1895bb8780687c3a2a369d7492bd08ced53ac /ext
parent5bda3debcf2493308afd8d5c7d5ee306d5980828 (diff)
* ext/probeprofiler/probeprofiler.c: fix function name and
return value. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12215 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/probeprofiler/probeprofiler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/probeprofiler/probeprofiler.c b/ext/probeprofiler/probeprofiler.c
index 9d2b1a6c09..9ffb203673 100644
--- a/ext/probeprofiler/probeprofiler.c
+++ b/ext/probeprofiler/probeprofiler.c
@@ -18,14 +18,14 @@ pprof_hook(rb_event_flag_t flag, VALUE data,
VALUE dmyid, VALUE dmyklass)
{
rb_thread_t *th = GET_THREAD();
- VALUE sig = rb_thread_current_sig(th);
+ VALUE sig = rb_thread_current_status(th);
hash_inc(data, sig);
}
static VALUE
pprof_data(VALUE mod)
{
- rb_const_get_at(mod, rb_intern("#pprof_data"));
+ return rb_const_get_at(mod, rb_intern("#pprof_data"));
}
static VALUE