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

ruby-changes:45772

From: naruse <ko1@a...>
Date: Sat, 11 Mar 2017 22:36:30 +0900 (JST)
Subject: [ruby-changes:45772] naruse:r57845 (ruby_2_4): merge revision(s) 57205:

naruse	2017-03-11 22:36:26 +0900 (Sat, 11 Mar 2017)

  New Revision: 57845

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

  Log:
    merge revision(s) 57205:
    
    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 directories:
    branches/ruby_2_4/
  Modified files:
    branches/ruby_2_4/cont.c
    branches/ruby_2_4/version.h
Index: ruby_2_4/cont.c
===================================================================
--- ruby_2_4/cont.c	(revision 57844)
+++ ruby_2_4/cont.c	(revision 57845)
@@ -1102,8 +1102,9 @@ rb_cont_call(int argc, VALUE *argv, VALU https://github.com/ruby/ruby/blob/trunk/ruby_2_4/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.
Index: ruby_2_4/version.h
===================================================================
--- ruby_2_4/version.h	(revision 57844)
+++ ruby_2_4/version.h	(revision 57845)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_4/version.h#L1
 #define RUBY_VERSION "2.4.0"
 #define RUBY_RELEASE_DATE "2017-03-11"
-#define RUBY_PATCHLEVEL 12
+#define RUBY_PATCHLEVEL 13
 
 #define RUBY_RELEASE_YEAR 2017
 #define RUBY_RELEASE_MONTH 3

Property changes on: ruby_2_4
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r57205


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

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