[Issue 14469] file.readText on Win64 doesn't work for files 4GB.

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14469

--- Comment #3 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/95fd043dc6d0c945c171f8874761e1399a11252c
Fix Issue 14469 - read  4GB file on Windows x64.

https://github.com/D-Programming-Language/phobos/commit/75f068773ccc0750c2cf865fe2f621a9947723f3
Merge pull request #3218 from artemalive/issue_14469

Fix Issue 14469 - read  4GB file on Windows x64.

--


[Issue 14469] file.readText on Win64 doesn't work for files 4GB.

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14469

github-bugzi...@puremagic.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--


[Issue 14554] [REG2.066] dmd generate wrong error message for multiple template with same name

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14554

--- Comment #2 from Daniel Kozak kozz...@gmail.com ---
https://github.com/D-Programming-Language/dmd/pull/4681

--


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

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #15 from Sobirari Muhomori dfj1es...@sneakemail.com ---
BTW, Windows 8 has GetSystemTimePreciseAsFileTime function for time reading
with better precision.

--


[Issue 14617] PTHREAD_MUTEX_INITIALIZER does not work on OSX

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14617

--- Comment #8 from Andrei Alexandrescu and...@erdani.com ---
I now understand. Let's leave types.d be code-free for now (in fact it could be
renamed to types.di) and only fix PTHREAD_MUTEX_INITIALIZER at least for now.

--


[Issue 14617] PTHREAD_MUTEX_INITIALIZER does not work on OSX

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14617

--- Comment #9 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/ab78a534dc017efecbe86f79f5d4559b85ef8619
fix issue 14617 - Define correct values for PTHREAD_MUTEX_INITIALIZER and
PTHREAD_ONCE_INIT.

https://github.com/D-Programming-Language/druntime/commit/19f3f0db648b6361248e2c53e00fcb3794c2521b
Merge pull request #1285 from schveiguy/pthreadmutexosx

Fix issue 14617 - PTHREAD_MUTEX_INITIALIZER does not work on OSX

--


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

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=13433

Steven Schveighoffer schvei...@yahoo.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #16 from Steven Schveighoffer schvei...@yahoo.com ---
(In reply to Sobirari Muhomori from comment #15)
 BTW, Windows 8 has GetSystemTimePreciseAsFileTime function for time reading
 with better precision.

If there's a way to utilize this and still be binary compatible with Win XP,
that might be possible. But we can't require Windows 8 for D.

And actually, this has been pulled, so I think we can close this.

--


[Issue 7454] Add file and line numbers to Linux stack traces using addr2line

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7454

Martin Nowak c...@dawg.eu changed:

   What|Removed |Added

 CC||c...@dawg.eu

--- Comment #3 from Martin Nowak c...@dawg.eu ---
See also issue 11870. We should implement support for decoding DWARF info in
druntime itself.

--


[Issue 14464] coverage merge doesn't work

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14464

--- Comment #1 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/7a8e9dc85be981710e16c99d528f2e5cbae2883d
fix Issue 14464 - coverage merge doesn't work

- fix parsing of existing .lst file
- use append semantics (create or merge with existing .lst file)
- enable merge by default
- some code cleanup (reuse buffers, log10, foreach, min/max)

https://github.com/D-Programming-Language/druntime/commit/789f02ec42ff9eb8007f282a45126e6252b64453
Merge pull request #1225 from MartinNowak/fix14464

fix Issue 14464 - coverage merge doesn't work

--


[Issue 14620] New: make core.Thread.Fiber more @nogc

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14620

  Issue ID: 14620
   Summary: make core.Thread.Fiber more @nogc
   Product: D
   Version: unspecified
  Hardware: x86
OS: All
Status: NEW
  Severity: enhancement
  Priority: P1
 Component: druntime
  Assignee: nob...@puremagic.com
  Reporter: s...@extrawurst.org

At least the core.thread.Fiber methods `state` and `getThis` can be @nogc as
far as i can see.

--


[Issue 9110] Escaping reference error from lazy variadic parameters

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=9110

joeyemm...@yahoo.com changed:

   What|Removed |Added

 CC||joeyemm...@yahoo.com

--- Comment #2 from joeyemm...@yahoo.com ---
Have also hit this...
void main(string[] args)
{
test(a());
}

bool a()
{
return true;
}

void test(lazy bool[] c...)
{
}

--


[Issue 14554] [REG2.066] dmd generate wrong error message for multiple template with same name

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14554

--- Comment #3 from github-bugzi...@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/3bc87563d4c276015848c216e799133fafd46f18
fix: Issue 14554 - [REG2.066] dmd generate wrong error message for multiple
template with same name

https://github.com/D-Programming-Language/dmd/commit/1c2f164a91fe384c1905ad871e7f38f89b7505b7
Merge pull request #4681 from Kozzi11/Issue_14554

fix: Issue 14554 - [REG2.066] dmd generate wrong error message for multiple
template with same name

--


[Issue 14554] [REG2.066] dmd generate wrong error message for multiple template with same name

2015-05-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=14554

Kenji Hara k.hara...@gmail.com changed:

   What|Removed |Added

   Keywords||pull
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--