mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c (gc_sweep): typo fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10802 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e8f43ad081
commit
b22fc4ebb6
2 changed files with 5 additions and 1 deletions
|
@ -61,6 +61,10 @@ Fri Aug 25 20:35:57 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
|||
* test/wsdl/document/test_rpc.rb: remove echo.rb after test.
|
||||
[ruby-dev:29337]
|
||||
|
||||
Fri Aug 25 17:02:06 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* gc.c (gc_sweep): typo fixed.
|
||||
|
||||
Fri Aug 25 16:05:50 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* object.c (sym_call): check if the receiver is given.
|
||||
|
|
2
gc.c
2
gc.c
|
@ -1109,7 +1109,7 @@ gc_sweep(void)
|
|||
|
||||
heaps[i].limit = 0;
|
||||
for (pp = final_list; pp != final; pp = pp->as.free.next) {
|
||||
p->as.free.flags |= FL_SINGLETON; /* freeing page mark */
|
||||
pp->as.free.flags |= FL_SINGLETON; /* freeing page mark */
|
||||
}
|
||||
freelist = free; /* cancel this page from freelist */
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue