ruby-changes:33177
From: usa <ko1@a...>
Date: Mon, 3 Mar 2014 03:08:09 +0900 (JST)
Subject: [ruby-changes:33177] usa:r45256 (trunk): * io.c (rb_io_fsync): revert a part of r45254. explicit fsync should update
usa 2014-03-03 03:08:04 +0900 (Mon, 03 Mar 2014) New Revision: 45256 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=45256 Log: * io.c (rb_io_fsync): revert a part of r45254. explicit fsync should update the metadata. Modified files: trunk/ChangeLog trunk/io.c Index: ChangeLog =================================================================== --- ChangeLog (revision 45255) +++ ChangeLog (revision 45256) @@ -1,8 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 Mon Mar 3 02:53:53 2014 NAKAMURA Usaku <usa@r...> - * io.c (rb_io_flush_raw, rb_io_fsync): [EXPERIMENTAL] remove force - syncing for Win32 to speed up IO. this may break some tests, and - they'll be fixed later. + * io.c (rb_io_flush_raw): [EXPERIMENTAL] remove force syncing for Win32 + to speed up IO. this may break some tests, and they'll be fixed + later. [ruby-core:58570] [Bug #9153] Mon Mar 3 00:17:43 2014 NAKAMURA Usaku <usa@r...> Index: io.c =================================================================== --- io.c (revision 45255) +++ io.c (revision 45256) @@ -1925,6 +1925,10 @@ rb_io_fsync(VALUE io) https://github.com/ruby/ruby/blob/trunk/io.c#L1925 if (io_fflush(fptr) < 0) rb_sys_fail(0); +# ifndef _WIN32 + if ((int)rb_thread_io_blocking_region(nogvl_fsync, fptr, fptr->fd) < 0) + rb_sys_fail_path(fptr->pathv); +# endif return INT2FIX(0); } #else -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/