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

ruby-changes:37715

From: nobu <ko1@a...>
Date: Sun, 1 Mar 2015 21:27:21 +0900 (JST)
Subject: [ruby-changes:37715] nobu:r49796 (trunk): thread_pthread.c: use rb_pid_t

nobu	2015-03-01 21:27:06 +0900 (Sun, 01 Mar 2015)

  New Revision: 49796

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

  Log:
    thread_pthread.c: use rb_pid_t
    
    * thread_pthread.c (timer_thread_pipe.owner_process): process ID
      should be pid_t.

  Modified files:
    trunk/thread_pthread.c
Index: thread_pthread.c
===================================================================
--- thread_pthread.c	(revision 49795)
+++ thread_pthread.c	(revision 49796)
@@ -1266,7 +1266,7 @@ static int check_signal_thread_list(void https://github.com/ruby/ruby/blob/trunk/thread_pthread.c#L1266
 static struct {
     int normal[2];
     int low[2];
-    int owner_process;
+    rb_pid_t owner_process;
 } timer_thread_pipe = {
     {-1, -1},
     {-1, -1}, /* low priority */

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

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