summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-13 03:18:00 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-11-13 03:18:00 +0000
commite9885185c4061dc30987e5897d8cece54c33600f (patch)
tree3f95b47db437a4a1bc8fe4a3198e788cf05f005c /ChangeLog
parent54af8757b337a7347a230d450cfda9e2b0c94560 (diff)
* rb_w32_fstat{,i64}: speed up. adjuting timestamps in this function
is to get rid of the side effect of ENV["TZ"]. then, if ENV["TZ"] is not set, no need to adjust. this change makes File#stat about 60% faster. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48394 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 2dba9ea93d..2675c23605 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Nov 13 12:11:18 2014 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * rb_w32_fstat{,i64}: speed up. adjuting timestamps in this function
+ is to get rid of the side effect of ENV["TZ"]. then, if ENV["TZ"] is
+ not set, no need to adjust. this change makes File#stat about 60%
+ faster.
+
Thu Nov 13 11:56:12 2014 Nobuyoshi Nakada <nobu@ruby-lang.org>
* st.c: include "internal.h" for STATIC_ASSERT.