fix typos

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38060 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2012-11-30 12:50:05 +00:00
parent d07346a102
commit 759619ca86

View File

@ -5,7 +5,7 @@ Fri Nov 30 21:07:56 2012 NAKAMURA Usaku <usa@ruby-lang.org>
Fri Nov 30 20:47:44 2012 Koichi Sasada <ko1@atdot.net>
* thread.c: TracePoint#self returns invoking/exitting thread object
* thread.c: TracePoint#self returns invoking/exiting thread object
at thread_begin/end event.
* test/ruby/test_settracefunc.rb: fix test.
@ -51,8 +51,8 @@ Fri Nov 30 18:23:26 2012 Koichi Sasada <ko1@atdot.net>
* thread.c: remove Thread.check_interrupt.
This method is difficult to understand by name.
* thraed.c: add Thread.async_interrupted?.
This method check any defered async interrupts.
* thread.c: add Thread.async_interrupted?.
This method check any deferred async interrupts.
* test/ruby/test_thread.rb: change tests for above.
@ -235,8 +235,8 @@ Fri Nov 30 07:21:33 2012 Koichi Sasada <ko1@atdot.net>
[EXPERIMENTAL: NEED DISCUSS]
* vm_trace.c: add events
* :thread_begin - hook at thread beggining.
* :thead_end - hook at thread ending.
* :thread_begin - hook at thread beginning.
* :thread_end - hook at thread ending.
* :b_call - hook at block enter.
* :b_return - hook at block leave.
This change slow down block invocation.