mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
gc.c: fix rdoc of garbage_collect [ci skip]
* gc.c (gc_start_internal): [DOC] methods without arguments like r56194. [Bug #12777] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56201 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fdaea1596a
commit
c6501cccb1
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Thu Sep 22 13:00:04 2016 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
|
||||
|
||||
* gc.c (gc_start_internal): [DOC] methods without arguments
|
||||
like r56194. [Bug #12777]
|
||||
|
||||
Wed Sep 21 17:43:53 2016 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* process.c (InitVM_process): Support CLOCK_MONOTONIC_RAW_APPROX,
|
||||
|
|
3
gc.c
3
gc.c
|
@ -6574,7 +6574,8 @@ Init_stack(volatile VALUE *addr)
|
|||
/*
|
||||
* call-seq:
|
||||
* GC.start -> nil
|
||||
* GC.garbage_collect -> nil
|
||||
* ObjectSpace.garbage_collect -> nil
|
||||
* include GC; garbage_collect -> nil
|
||||
* GC.start(full_mark: true, immediate_sweep: true) -> nil
|
||||
* ObjectSpace.garbage_collect(full_mark: true, immediate_sweep: true) -> nil
|
||||
* include GC; garbage_collect(full_mark: true, immediate_sweep: true) -> nil
|
||||
|
|
Loading…
Reference in a new issue