[前][次][番号順一覧][スレッド一覧]

ruby-changes:45132

From: normal <ko1@a...>
Date: Tue, 27 Dec 2016 17:52:37 +0900 (JST)
Subject: [ruby-changes:45132] normal:r57205 (trunk): cont.c: change fiber stack size doc [ci skip]

normal	2016-12-27 17:52:32 +0900 (Tue, 27 Dec 2016)

  New Revision: 57205

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57205

  Log:
    cont.c: change fiber stack size doc [ci skip]
    
    It's many years since we had tiny 4KB fiber stacks :<
    point to the manpage instead for current, larger sizes.

  Modified files:
    trunk/cont.c
Index: cont.c
===================================================================
--- cont.c	(revision 57204)
+++ cont.c	(revision 57205)
@@ -1102,8 +1102,9 @@ rb_cont_call(int argc, VALUE *argv, VALU https://github.com/ruby/ruby/blob/trunk/cont.c#L1102
  *  the programmer and not the VM.
  *
  *  As opposed to other stackless light weight concurrency models, each fiber
- *  comes with a small 4KB stack. This enables the fiber to be paused from deeply
- *  nested function calls within the fiber block.
+ *  comes with a stack.  This enables the fiber to be paused from deeply
+ *  nested function calls within the fiber block.  See the ruby(1)
+ *  manpage to configure the size of the fiber stack(s).
  *
  *  When a fiber is created it will not run automatically. Rather it must
  *  be explicitly asked to run using the <code>Fiber#resume</code> method.

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]