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

ruby-changes:35888

From: nobu <ko1@a...>
Date: Thu, 16 Oct 2014 09:17:58 +0900 (JST)
Subject: [ruby-changes:35888] nobu:r47969 (trunk): cont.c: fix compile error

nobu	2014-10-16 09:17:44 +0900 (Thu, 16 Oct 2014)

  New Revision: 47969

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

  Log:
    cont.c: fix compile error
    
    * cont.c (rb_fiber_t): fix compile error caused by move to
      vm_core.h at r47964.  [Feature #10341]

  Modified files:
    trunk/ChangeLog
    trunk/cont.c
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 47968)
+++ ChangeLog	(revision 47969)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Oct 16 09:17:48 2014  Nobuyoshi Nakada  <nobu@r...>
+
+	* cont.c (rb_fiber_t): fix compile error caused by move to
+	  vm_core.h at r47964.  [Feature #10341]
+
 Thu Oct 16 08:58:11 2014  Eric Wong  <e@8...>
 
 	* test/ruby/test_process.rb (test_deadlock_by_signal_at_forking):
Index: cont.c
===================================================================
--- cont.c	(revision 47968)
+++ cont.c	(revision 47969)
@@ -153,7 +153,7 @@ typedef struct rb_fiber_struct { https://github.com/ruby/ruby/blob/trunk/cont.c#L153
     size_t ss_size;
 #endif
 #endif
-} rb_fiber_t;
+};
 
 static const rb_data_type_t cont_data_type, fiber_data_type;
 static VALUE rb_cContinuation;

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

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