PEP 418: more links, Java and Ruby
This commit is contained in:
parent
261b553146
commit
0b0e2d58d9
|
@ -490,6 +490,8 @@ Related Python issues:
|
||||||
|
|
||||||
Librairies exposing monotonic clocks:
|
Librairies exposing monotonic clocks:
|
||||||
|
|
||||||
|
* `Java: System.nanoTime
|
||||||
|
<http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/System.html#nanoTime()>`_
|
||||||
* `Qt library: QElapsedTimer
|
* `Qt library: QElapsedTimer
|
||||||
<http://qt-project.org/doc/qt-4.8/qelapsedtimer.html>`_
|
<http://qt-project.org/doc/qt-4.8/qelapsedtimer.html>`_
|
||||||
* `glib library: g_get_monotonic_time ()
|
* `glib library: g_get_monotonic_time ()
|
||||||
|
@ -504,6 +506,11 @@ Librairies exposing monotonic clocks:
|
||||||
* `Perl: Time::HiRes
|
* `Perl: Time::HiRes
|
||||||
<http://perldoc.perl.org/Time/HiRes.html>`_ exposes
|
<http://perldoc.perl.org/Time/HiRes.html>`_ exposes
|
||||||
clock_gettime(CLOCK_MONOTONIC)
|
clock_gettime(CLOCK_MONOTONIC)
|
||||||
|
* `Ruby: AbsoluteTime.now
|
||||||
|
<https://github.com/bwbuchanan/absolute_time/>`_: use
|
||||||
|
clock_gettime(CLOCK_MONOTONIC), mach_absolute_time() or gettimeofday().
|
||||||
|
"AbsoluteTime.monotonic?" method indicates if AbsoluteTime.now is monotonic
|
||||||
|
or not.
|
||||||
|
|
||||||
Related documents:
|
Related documents:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue