[#84280] [Ruby trunk Bug#14181] hangs or deadlocks from waitpid, threads, and trapping SIGCHLD — nobu@...
Issue #14181 has been updated by nobu (Nobuyoshi Nakada).
3 messages
2017/12/15
[#84398] [Ruby trunk Bug#14220] WEBrick changes - failures on MSWIN, MinGW — Greg.mpls@...
Issue #14220 has been reported by MSP-Greg (Greg L).
3 messages
2017/12/22
[#84472] Re: [ruby-dev:50394] [Ruby trunk Bug#14240] warn four special variables: $; $, $/ $\ — Eric Wong <normalperson@...>
Shouldn't English posts be on ruby-core instead of ruby-dev?
3 messages
2017/12/26
[ruby-core:84225] [Ruby trunk Feature#14169] PATCH: File.lstat(filename).ino on Windows.
From:
usa@...
Date:
2017-12-12 16:01:02 UTC
List:
ruby-core #84225
Issue #14169 has been updated by usa (Usaku NAKAMURA). merged. thx! ---------------------------------------- Feature #14169: PATCH: File.lstat(filename).ino on Windows. https://bugs.ruby-lang.org/issues/14169#change-68346 * Author: kubo (Takehiro Kubo) * Status: Closed * Priority: Normal * Assignee: * Target version: ---------------------------------------- On Unix, the return values of File.stat(filename) and File.lstat(filename) are same when the file isn't a symbolic link. However they are different on Windows. File.lstat(filename).ino is always zero. The attached patch fixes File.lstat(filename).ino to return same value with File.stat(filename).ino. Before the patch, File.stat() and File.lstat() calls winnt_stat() and winnt_lstat() in win32.c respectively. After the patch, (1) winnt_lstat() is deleted, (2) `lstat` argument is added to winnt_stat() and (3) reparse point handling, which was in winnt_lstat(), is added to winnt_stat(). As far as I checked, it works fine for junctions and symbolic links as before. ---Files-------------------------------- file_lstat_ino.patch (6.79 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:[email protected]?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>