1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/-test-/postponed_job/postponed_job.c: fix `init' function name.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-05-26 23:40:01 +00:00
parent a5fc9521d9
commit 96090c083d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon May 27 08:38:21 2013 Koichi Sasada <ko1@atdot.net>
* ext/-test-/postponed_job/postponed_job.c: fix `init' function name.
Mon May 27 06:22:41 2013 Koichi Sasada <ko1@atdot.net> Mon May 27 06:22:41 2013 Koichi Sasada <ko1@atdot.net>
* include/ruby/debug.h, vm_trace.c: add rb_postponed_job API. * include/ruby/debug.h, vm_trace.c: add rb_postponed_job API.

View file

@ -23,7 +23,7 @@ pjob_call_direct(VALUE self, VALUE obj)
} }
void void
Init_task(VALUE self) Init_postponed_job(VALUE self)
{ {
VALUE mBug = rb_define_module("Bug"); VALUE mBug = rb_define_module("Bug");
rb_define_module_function(mBug, "postponed_job_register", pjob_register, 1); rb_define_module_function(mBug, "postponed_job_register", pjob_register, 1);