aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-14 01:48:52 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-10-14 01:48:52 +0000
commite51c6e57047bec18b0e844f1bf13026c87114ddf (patch)
tree2b5e0f902bd7cd2e26b0816a37e31a27866e1d08 /ChangeLog
parentce52ba9f3f920f4b5eb366dbc2e94f49e7333220 (diff)
downloadruby-e51c6e57047bec18b0e844f1bf13026c87114ddf.tar.gz
webrick: use monotonic clock for timeouts
The monotonic clock is immune to system time changes and a better option for implementing timing comparisons. * lib/webrick/utils.rb (TimeoutHandler): use monotonic clock (watch): ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e6434a8ea4..fb7b8e123f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Oct 14 10:48:37 2016 Eric Wong <e@80x24.org>
+
+ * lib/webrick/utils.rb (TimeoutHandler): use monotonic clock
+ (watch): ditto
+
Thu Oct 13 19:41:32 2016 Nobuyoshi Nakada <nobu@ruby-lang.org>
* io.c (copy_stream_body): use IO to write to copy to duplex IO.