[#60404] is RB_GC_GUARD needed in rb_io_syswrite? — Eric Wong <normalperson@...>
I haven't gotten it to crash as-is, but it seems like we need to
4 messages
2014/02/01
[#60682] volatile usages — Eric Wong <normalperson@...>
Hi all, I went ahead and removed some use of volatile which were once
5 messages
2014/02/13
[#60794] [RFC] rearrange+pack vtm and time_object structs — Eric Wong <normalperson@...>
Extracted from addendum on top of Feature #9362 (cache-aligned objects).
4 messages
2014/02/16
[#61139] [ruby-trunk - Feature #9577] [Open] [PATCH] benchmark/driver.rb: align columns in text output — normalperson@...
Issue #9577 has been reported by Eric Wong.
3 messages
2014/02/28
[ruby-core:60556] [ruby-trunk - Bug #9435] Kernel.system problem
From:
nagachika00@...
Date:
2014-02-07 03:40:04 UTC
List:
ruby-core #60556
Issue #9435 has been updated by Tomoyuki Chikanaga. Tracker changed from Backport to Bug Project changed from Backport200 to ruby-trunk ---------------------------------------- Bug #9435: Kernel.system problem https://bugs.ruby-lang.org/issues/9435#change-45010 * Author: wind winy * Status: Open * Priority: Normal * Assignee: * Category: * Target version: * ruby -v: 2.0.0 * Backport: ---------------------------------------- if ENV['PATH'] include double quotes, Kernel.system cann't find it. windows OS, open a cmd window ``` set PATH="C:\Program Files\7-Zip";%PATH% 7z -h # can run it pry system '7z -h' # can't find ``` and, if command include double quotes, system can't find too. ``` system '"C:\Program Files\7-Zip\7z" -h' # ok system '"C:\Program Files\7-Zip"\7z -h' # can't find system '"C:\Program Files\7-Zip\"7z -h' # can't find ``` -- http://bugs.ruby-lang.org/