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

fix typos

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kazu 2013-10-29 05:31:57 +00:00
parent a69756de67
commit 52d8f9f3ef

View file

@ -110,7 +110,7 @@ Sun Oct 27 20:53:08 2013 Tanaka Akira <akr@fsij.org>
(readline_getc): Use rb_thread_call_without_gvl2 to invoke getc_func.
[ruby-dev:47033] [Bug #8749]
(clear_rl_instream, clear_rl_outstream): Close FILE structure
allocated by this extention reliably. [ruby-core:57951] [Bug #9040]
allocated by this extension reliably. [ruby-core:57951] [Bug #9040]
(readline_readline): Use clear_rl_instream and clear_rl_outstream.
(readline_s_set_input): Set readline_rl_instream.
(readline_s_set_output): Set readline_rl_outstream.
@ -118,7 +118,7 @@ Sun Oct 27 20:53:08 2013 Tanaka Akira <akr@fsij.org>
readline_getc doesn't block other threads for any FILE structure now.
[ruby-dev:47033] [Bug #8749] reported by Nobuhiro IMAI.
[ruby-core:57951] [Bug #9040] reporeted by Eamonn Webster.
[ruby-core:57951] [Bug #9040] reported by Eamonn Webster.
Sat Oct 26 19:31:28 2013 Kazuki Tsujimoto <kazuki@callcc.net>
@ -178,7 +178,7 @@ Sat Oct 26 06:35:41 2013 Masaya Tarui <tarui@ruby-lang.org>
Sat Oct 26 04:01:35 2013 Koichi Sasada <ko1@atdot.net>
* gc.c (gc_before_heap_sweep): fix freelist management.
After rb_gc_force_recycle() for a object blonging to heap->freelist,
After rb_gc_force_recycle() for a object belonging to heap->freelist,
`heap->using_page->freelist' is not null.
Thu Oct 24 21:57:24 2013 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
@ -274,11 +274,11 @@ Wed Oct 23 17:39:35 2013 Koichi Sasada <ko1@atdot.net>
Algorithm:
(1) Sweeping all pages in a heap and move empty pages from the
heap to tomb_heap.
(2) Check all exsisting pages and free a page
(2) Check all existing pages and free a page
if all slots of this page are empty and
there is enough empty slots (checking by swept_num)
To introduce this pach, there are several tuning of GC parameters.
To introduce this patch, there are several tuning of GC parameters.
Wed Oct 23 14:20:56 2013 Koichi Sasada <ko1@atdot.net>