May 26, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #21 from Sobirari Muhomori <dfj1esp02@sneakemail.com> ---
I mean, D compiler can compile 64-bit programs, which are incompatible with 32-bit systems. And I believe 64-bit linux can be set up without ability to run 32-bit executables.

--
May 26, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #22 from Steven Schveighoffer <schveiguy@yahoo.com> ---
Vladimir pointed out a mechanism to make the decision at runtime. That's the only option I see here. I'm not sure how it's done, but it seems it would incur some runtime cost. But I think it could be made to work.

--
June 01, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

Jonathan M Davis <issues.dlang@jmdavisProg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #23 from Jonathan M Davis <issues.dlang@jmdavisProg.com> ---
The druntime changes have been pulled, but the Phobos changes - which is what the request is actually for - haven't been pulled yet. I have to finish updating the PR for them based on the druntime changes.

--
June 01, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #24 from Steven Schveighoffer <schveiguy@yahoo.com> ---
(In reply to Jonathan M Davis from comment #23)
> The druntime changes have been pulled, but the Phobos changes - which is what the request is actually for - haven't been pulled yet. I have to finish updating the PR for them based on the druntime changes.

Sorry, I thought the request applied to druntime, my mistake.

--
June 07, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #25 from Jonathan M Davis <issues.dlang@jmdavisProg.com> ---
https://github.com/D-Programming-Language/phobos/pull/2584

--
June 09, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

Andrei Alexandrescu <andrei@erdani.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|unspecified                 |D2

--
June 17, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #26 from github-bugzilla@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/druntime

https://github.com/D-Programming-Language/druntime/commit/8e29e0621b074a8d368b4d7d344281adb7a91e54 Add ClockType enum to core.time for issue# 13433.

https://github.com/D-Programming-Language/druntime/commit/bcfc36b3ca5a229c751c972c607fee57d4febcb2 Merge pull request #990 from jmdavis/13433

--
June 29, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #27 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/5f3c6f1a647c83247aea8811184d2b93f5147b46 Implement issue 13433: coarser realtime clock

This adds an option for getting the time using an alternative clock chosen via core.time.ClockType, including access to a coarser clock as requested by issue# 13433.

For ClockType.normal, the normal clock which has always been used is used.

For ClockType.coarse, a faster clock is used if available even if it's coarser so long as it still has sub-second precision, and the normal clock is used if no such clock is available.

For ClockType.precise, a more precise clock is used if available (currently only on FreeBSD), otherwise the normal clock is used.

For ClockType.second, a faster clock is used which only has second precision. If no such clock is available, then the normal clock is used, but the result is truncated to second precision.

https://github.com/D-Programming-Language/phobos/commit/14330724fd4a24bea22c807310e7b46fa9167327 Merge pull request #2584 from jmdavis/13433

Implement issue 13433 - add option for using coarser realtime clock.

--
June 30, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

Jonathan M Davis <issues.dlang@jmdavisProg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

--
October 04, 2015
https://issues.dlang.org/show_bug.cgi?id=13433

--- Comment #28 from github-bugzilla@puremagic.com ---
Commits pushed to stable at https://github.com/D-Programming-Language/phobos

https://github.com/D-Programming-Language/phobos/commit/5f3c6f1a647c83247aea8811184d2b93f5147b46 Implement issue 13433: coarser realtime clock

https://github.com/D-Programming-Language/phobos/commit/14330724fd4a24bea22c807310e7b46fa9167327 Merge pull request #2584 from jmdavis/13433

--