* thread.c (ppoll): typo bug fix.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nagai 2011-05-26 23:48:31 +00:00
Родитель 542190ce58
Коммит e65e24bd27
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Fri May 27 08:47:26 2011 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* thread.c (ppoll): typo bug fix.
Fri May 27 08:35:04 2011 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk.rb: hang-up at exit before calling Tk.mainloop.

Просмотреть файл

@ -2759,14 +2759,14 @@ int ppoll(struct pollfd *fds, nfds_t nfds,
timeout_ms = -1;
else {
tmp = ts->tv_sec * 1000;
tmp2 = tv->tv_nsec / (1000 * 1000);
tmp2 = ts->tv_nsec / (1000 * 1000);
if (TIMET_MAX - tmp < tmp2)
timeout_ms = -1;
else
timeout_ms = tmp + tmp2;
}
} else
timeout = -1;
timeout_ms = -1;
return poll(fds, nfds, timeout_ms);
}