[Issue 13428] New: Add template to perform appropriate substitution for inout when it appears in a type

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13428 Issue ID: 13428 Summary: Add template to perform appropriate substitution for inout when it appears in a type Product: D Version: D2 Hardware: All OS: All

[Issue 13429] New: icmp (and friends) should be @nogc

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13429 Issue ID: 13429 Summary: icmp (and friends) should be @nogc Product: D Version: D2 Hardware: All OS: All Status: NEW Severity: enhancement Priority:

[Issue 13430] New: Improve error message with wrong arg type to inout function

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13430 Issue ID: 13430 Summary: Improve error message with wrong arg type to inout function Product: D Version: D2 Hardware: All OS: All Status: NEW

[Issue 13430] Improve error message with wrong arg type to inout function

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13430 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Keywords||diagnostic

[Issue 13430] Improve error message with wrong arg type to inout function

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13430 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added Severity|enhancement |minor --

[Issue 13431] New: pragma(startaddress) doesn't work with COFF

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13431 Issue ID: 13431 Summary: pragma(startaddress) doesn't work with COFF Product: D Version: D2 Hardware: x86_64 OS: Windows Status: NEW Keywords: link-failure

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #23 from Tomash Brechko tomash.brec...@gmail.com --- I think the order of events is such that pthread_create() is followed by pthread_kill() from main thread before the new thread had any chance to run. In this case there are reports that

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #24 from Tomash Brechko tomash.brec...@gmail.com --- Now I see that I was wrong about double removal, please ignore that part. --

[Issue 13432] std.json.parseJSON does not report correct line number in Exception

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13432 murphyslaw...@gmail.com changed: What|Removed |Added CC||murphyslaw...@gmail.com --

[Issue 13432] New: std.json.parseJSON does not report correct line number in Exception

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13432 Issue ID: 13432 Summary: std.json.parseJSON does not report correct line number in Exception Product: D Version: D2 Hardware: x86_64 OS: Linux

[Issue 13432] std.json.parseJSON does not report correct line number in Exception

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13432 --- Comment #1 from murphyslaw...@gmail.com --- Created attachment 1420 -- https://issues.dlang.org/attachment.cgi?id=1420action=edit code to parse json and throw exception --

[Issue 13433] New: Request: Clock.currTime option to use CLOCK_REALTIME_COARSE / CLOCK_REALTIME_FAST

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 Issue ID: 13433 Summary: Request: Clock.currTime option to use CLOCK_REALTIME_COARSE / CLOCK_REALTIME_FAST Product: D Version: unspecified Hardware: x86 OS:

[Issue 10351] [GC] GC deadlocks in thread_suspendAll()

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10351 Sobirari Muhomori dfj1es...@sneakemail.com changed: What|Removed |Added Status|RESOLVED|REOPENED

[Issue 10351] [GC] GC deadlocks in thread_suspendAll()

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=10351 --- Comment #5 from Sobirari Muhomori dfj1es...@sneakemail.com --- also provide stack traces of other threads --

[Issue 13428] Add template to perform appropriate substitution for inout when it appears in a type

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13428 Sobirari Muhomori dfj1es...@sneakemail.com changed: What|Removed |Added URL|

[Issue 13433] Request: Clock.currTime option to use CLOCK_REALTIME_COARSE / CLOCK_REALTIME_FAST

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 Vladimir Panteleev thecybersha...@gmail.com changed: What|Removed |Added CC|

[Issue 13433] Request: Clock.currTime option to use CLOCK_REALTIME_COARSE / CLOCK_REALTIME_FAST

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433 --- Comment #2 from Vladimir Panteleev thecybersha...@gmail.com --- Oh, I see - std.logger needs the realtime clock to log the time together with the log message. --

[Issue 13354] Algebraic.opIndex/opIndexAssign makes wrong assumptions on the index/value type

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13354 --- Comment #4 from github-bugzi...@puremagic.com --- Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/352dee3a8961f6b0403ae781145b8e3d881ab447 Fix issue #13354 -

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #25 from Sean Kelly s...@invisibleduck.org --- Hrm... at one point thread_entryPoint called Thread.add to add itself, but I think the add was moved to Thread.start at some point to deal with a race. I had a comment in Thread.start

[Issue 4890] GC.collect() deadlocks multithreaded program.

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=4890 --- Comment #26 from safety0ff.bugz safety0ff.b...@gmail.com --- (In reply to Sean Kelly from comment #25) I think I'll have to roll back thread.d to find my original comments and see how it used to be implemented. Something was clearly changed

[Issue 13434] New: [ICE] indexing array with empty tuple causes dmd segfault

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13434 Issue ID: 13434 Summary: [ICE] indexing array with empty tuple causes dmd segfault Product: D Version: unspecified Hardware: x86_64 OS: Linux Status:

[Issue 13434] [ICE] indexing array with empty tuple causes dmd segfault

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13434 hst...@quickfur.ath.cx changed: What|Removed |Added Keywords||ice --

[Issue 13434] [ICE] indexing array with empty tuple causes dmd segfault

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13434 hst...@quickfur.ath.cx changed: What|Removed |Added Keywords||patch --- Comment #1 from

[Issue 13434] [ICE] indexing array with empty tuple causes dmd segfault

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13434 hst...@quickfur.ath.cx changed: What|Removed |Added Version|unspecified |D2 --

[Issue 13418] uninitializedArray core.simd.Vector return incorrect type

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13418 --- Comment #1 from Kazuki Komatsu enjouzensyou.bo...@gmail.com --- sorry. typoCannot not - Cannot. --

[Issue 13418] uninitializedArray core.simd.Vector return incorrect type

2014-09-06 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13418 --- Comment #2 from Kazuki Komatsu enjouzensyou.bo...@gmail.com --- sorry. typoCannot not - Cannot. --