[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 --- Comment #11 from Vladimir Panteleev 2014-02-12 07:06:18 EET --- Does this apply equally to the compiler and Phobos? Although there is still lots of recent activity in the D1 compiler branch, the last commit on the Phobos D1 branch is almo

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 --- Comment #12 from yebblies 2014-02-12 16:09:40 EST --- (In reply to comment #11) > Does this apply equally to the compiler and Phobos? Although there is still > lots of recent activity in the D1 compiler branch, the last commit on the > Pho

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 --- Comment #10 from yebblies 2014-02-12 15:59:57 EST --- (In reply to comment #9) > D1 is still in use. Just ignore D1 only bugs if you don't use D1. But to close > them does a disservice to the existing D1 users. Walter, where do we draw th

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 Walter Bright changed: What|Removed |Added Status|RESOLVED|REOPENED CC|

[Issue 1668] std.stream readf can't read int, nan, inf as floats

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1668 Andrei Alexandrescu changed: What|Removed |Added Status|NEW |ASSIGNED --- Comment #2 from An

[Issue 6498] [CTFE] copy-on-write is slow and causes huge memory usage

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=6498 cami...@bountysource.com changed: What|Removed |Added CC||cami...@bountysource.com --

[Issue 5570] 64 bit C ABI not followed for passing structs and complex numbers as function parameters

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=5570 cami...@bountysource.com changed: What|Removed |Added CC||cami...@bountysource.com --

[Issue 11634] std.process executeShell() Exception message is incomplete

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11634 --- Comment #4 from Rob T 2014-02-11 17:03:22 PST --- The platform is POSIX, Debian Squeeze and DMD 2.064. It appears to happen only with a certain process. I tried reducing the program for reproduction but when I did that the problem went a

[Issue 11833] std.process: ddoc warnings

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11833 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Co

[Issue 11634] std.process executeShell() Exception message is incomplete

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11634 --- Comment #3 from Vladimir Panteleev 2014-02-12 02:50:19 EET --- I can't reproduce this problem on Linux with DMD 2.064. Please specify the platform and post some example code. -- Configure issuemail: https://d.puremagic.com/issues/userp

[Issue 11634] std.process executeShell() Exception message is incomplete

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11634 --- Comment #2 from Vladimir Panteleev 2014-02-12 02:09:34 EET --- Judging by the error message and the source code, this problem manifested on a POSIX OS. -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email

[Issue 12134] New: std.string.split(string) assignment to immutable

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12134 Summary: std.string.split(string) assignment to immutable Product: D Version: D2 Platform: All OS/Version: All Status: NEW Keywords: rejects-valid Severity: enhan

[Issue 11634] std.process executeShell() Exception message is incomplete

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11634 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Co

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #7 from Stanislav Blinov 2014-02-11 16:01:43 PST --- See also the discussion thread: http://forum.dlang.org/thread/moyyibrpnnmrrovyl...@forum.dlang.org -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=e

[Issue 11363] std.process should offer a way to run a executable with a given working directory

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11363 Vladimir Panteleev changed: What|Removed |Added Keywords||pull CC|

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #6 from Stanislav Blinov 2014-02-11 15:57:16 PST --- Something a bit less involving :) ref auto assumeLocal(T)(ref shared T var) @trusted pure nothrow { return *cast(T*)&var; } I should've probably noted that I already have

[Issue 11282] std.process: add capability for two-way inter-process communication without deadlock

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11282 --- Comment #11 from Vladimir Panteleev 2014-02-12 01:56:04 EET --- Actually that function is also missing File -> File functionality, for inter-process piping. I suppose internally it can abstract away files and ranges. -- Configure issue

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #5 from Andrej Mitrovic 2014-02-11 15:51:03 PST --- (In reply to comment #4) > Uhh that should teach me to copy-paste, the RHS should simply strip shared, > not > strip all the qualifiers. Fixed: template Unshared(T) {

[Issue 11282] std.process: add capability for two-way inter-process communication without deadlock

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11282 Vladimir Panteleev changed: What|Removed |Added CC||thecybersha...@gmail.com --- Co

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #4 from Andrej Mitrovic 2014-02-11 15:50:29 PST --- (In reply to comment #3) > template Unshared(T) > { > static if (is(T U == shared inout const U)) alias Unshared = U; > else static if (is(T U == shared inout

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #3 from Andrej Mitrovic 2014-02-11 15:49:51 PST --- (In reply to comment #2) > (In reply to comment #1) > > > shared int i; > > ++cast()i; > > cast()i would cast away everything, including const, silently :) Oops. Maybe someth

[Issue 11180] Launching a process from a Windows GUI process using std.process.spawnProcess always fails

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11180 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 Andrej Mitrovic changed: What|Removed |Added CC||andrej.mitrov...@gmail.com --- Com

[Issue 12133] Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 --- Comment #2 from Stanislav Blinov 2014-02-11 15:39:09 PST --- (In reply to comment #1) > shared int i; > ++cast()i; cast()i would cast away everything, including const, silently :) -- Configure issuemail: https://d.puremagic.com/issue

[Issue 12133] New: Relaxed read-modify-write for shared lvalues

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12133 Summary: Relaxed read-modify-write for shared lvalues Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P2

[Issue 10704] Cannot pass arguments by ref with std.concurrency.spawn

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=10704 Stanislav Blinov changed: What|Removed |Added CC||stanislav.bli...@gmail.com --- Co

[Issue 11736] segfault combining std.parallelism.parallel and std.process.executeShell

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11736 Jared Miller changed: What|Removed |Added Keywords||industry CC|

[Issue 10087] std.range.chunks problem with chunkSize = 0

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=10087 Peter Alexander changed: What|Removed |Added CC||peter.alexander...@gmail.co

[Issue 12128] C++ conversion error: not parsed until the end of the file

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12128 --- Comment #4 from Rainer Schuetze 2014-02-11 12:34:12 PST --- > But what is this column here for: http://i.imgur.com/zLUtQlX.png The left field contains replacements that are applied to the input before parsing it as C++, the right field

[Issue 9184] std.algorithm.all fails to compile when providing a lambda

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=9184 Peter Alexander changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 Steven Schveighoffer changed: What|Removed |Added Status|REOPENED|RESOLVED Resolution|

[Issue 12129] Wrong ddoc for one vararg.va_start argument

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12129 Blake Anderton changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 12087] Add Readme to dlang.org repository that explains how to contribute

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12087 Andrej Mitrovic changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 12087] Add Readme to dlang.org repository that explains how to contribute

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12087 Andrej Mitrovic changed: What|Removed |Added Keywords||pull --- Comment #3 from Andrej Mi

[Issue 12098] libcurl bad argument on handle null

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12098 --- Comment #5 from github-bugzi...@puremagic.com 2014-02-11 05:14:01 PST --- Commit pushed to 2.065 at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/71ca5f37b84bb63cd287681ee31915027

[Issue 12089] std.utf.validate and inout(char[]) failts to compile

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12089 --- Comment #5 from github-bugzi...@puremagic.com 2014-02-11 05:13:50 PST --- Commit pushed to 2.065 at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/8e8fd6490c06ca4c39b534b53927f6be8

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 yebblies changed: What|Removed |Added CC||yebbl...@gmail.com --- Comment #7 from yeb

[Issue 12128] C++ conversion error: not parsed until the end of the file

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12128 --- Comment #3 from Andrej Mitrovic 2014-02-11 02:47:20 PST --- (In reply to comment #2) > Small usability issue: It's really hard matching the left and right columns > since they scroll independently and there's no line numbering. Wait, I

[Issue 12094] typeof(null) should convert to reference types

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12094 yebblies changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 12090] Make std.concurrency compatible with fibers as threads

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12090 yebblies changed: What|Removed |Added CC||yebbl...@gmail.com --- Comment #3 from ye

[Issue 12128] C++ conversion error: not parsed until the end of the file

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12128 --- Comment #2 from Andrej Mitrovic 2014-02-11 02:45:04 PST --- (In reply to comment #1) > The files reveal some deficiencies in the converters C++ parser, mostly it > seems not to deal with scoped identifiers. Here is a list of "Pre Token >

[Issue 12098] libcurl bad argument on handle null

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12098 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 9285] dtoh utility - convert D files to C++ header files

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=9285 --- Comment #13 from Adam D. Ruppe 2014-02-10 20:55:50 PST --- I haven't linked this in here yet so here it is: https://github.com/D-Programming-Language/tools/pull/39 Should be good enough to start using, then we can address further issues

[Issue 12132] New: Object.Monitor and core.sync primitives should be shared

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12132 Summary: Object.Monitor and core.sync primitives should be shared Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: enhancement

[Issue 12098] libcurl bad argument on handle null

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12098 --- Comment #4 from github-bugzi...@puremagic.com 2014-02-10 21:35:14 PST --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/701768ccfc3ec64856794bf19df9a9b

[Issue 11630] shared library segv

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11630 safety0ff.bugz changed: What|Removed |Added CC||safety0ff.b...@gmail.com --- Commen

[Issue 11981] unittest 'host' deadlock

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=11981 --- Comment #19 from github-bugzi...@puremagic.com 2014-02-10 15:16:28 PST --- Commits pushed to master at https://github.com/D-Programming-Language/druntime https://github.com/D-Programming-Language/druntime/commit/25b68995b280a5e02a758aa0e6

[Issue 12128] C++ conversion error: not parsed until the end of the file

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12128 Rainer Schuetze changed: What|Removed |Added CC||r.sagita...@gmx.de --- Comment #1

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 Steven Schveighoffer changed: What|Removed |Added CC||schvei...@yahoo.com --- Commen

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 --- Comment #6 from Vladimir Panteleev 2014-02-10 23:34:25 EET --- > But I think to close it because it's fixed in D2 gives the wrong impression. Sorry about that. Since this bug was created before D2 existed, and since it's reasonable to ex

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 Vladimir Panteleev changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|WORKS

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 --- Comment #3 from Steven Schveighoffer 2014-02-10 13:13:16 PST --- I wonder if this should be reopened or at least closed as wontfix, since this is a D1 bug? -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email -

[Issue 4600] writeln() is not thread-safe

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=4600 Stanislav Blinov changed: What|Removed |Added CC||stanislav.bli...@gmail.com --- Com

[Issue 12131] New: Struct assign purity error

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12131 Summary: Struct assign purity error Product: D Version: D2 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priori

[Issue 1004] Changed environment not passed to child process

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=1004 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 12089] std.utf.validate and inout(char[]) failts to compile

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12089 Kenji Hara changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Issue 12089] std.utf.validate and inout(char[]) failts to compile

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=12089 --- Comment #4 from github-bugzi...@puremagic.com 2014-02-10 07:32:49 PST --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/2763ee14661faf985fe17df776e7936

[Issue 3120] wrong parameter array in std.process.execv

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=3120 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|

[Issue 5173] std.process.shell cannot handle non-UTF8 output

2014-02-11 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=5173 Vladimir Panteleev changed: What|Removed |Added Status|NEW |RESOLVED CC|