1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* thread_pthread.c (rb_thread_create_timer_thread):

the type of retrun value of write(2) is ssize_t.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32246 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2011-06-27 02:43:03 +00:00
parent f18cf4f023
commit 657e9e2879
2 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,11 @@
Mon Jun 27 11:41:47 2011 NARUSE, Yui <naruse@ruby-lang.org>
* thread_pthread.c (rb_thread_create_timer_thread):
the type of retrun value of write(2) is ssize_t.
Mon Jun 27 09:57:02 2011 Koichi Sasada <ko1@atdot.net>
* thread_pthread.c (rb_thread_create_timer_thread):
* thread_pthread.c (rb_thread_create_timer_thread):
Fixes missing initialization of oflags.
Mon Jun 27 09:07:42 2011 Koichi Sasada <ko1@atdot.net>

View file

@ -993,7 +993,7 @@ static int timer_thread_pipe_owner_process;
void
rb_thread_wakeup_timer_thread(void)
{
int result;
ssize_t result;
/* already opened */
if (timer_thread_pipe_owner_process == getpid()) {
@ -1023,7 +1023,7 @@ consume_communication_pipe(void)
{
const size_t buff_size = 1024;
char buff[buff_size];
int result;
ssize_t result;
retry:
result = read(timer_thread_pipe[0], buff, buff_size);
if (result < 0) {