This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients haney, vstinner
Date 2017-04-27.11:21:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1493292110.45.0.488530374142.issue30183@psf.upfronthosting.co.za>
In-reply-to
Content
> HP-UX does not support the CLOCK_MONOTONIC state.

I'm sorry but CPython requires a monotonic clock since CPython 3.5.

According to https://bugreports.qt.io/browse/QTBUG-22301 HP-UX < 11.3 and Solaris 9 don't support monotonic clock.

It seems like gethrtime() is the right function to be used on HP-UX.
https://docstore.mik.ua/manuals/hp-ux/en/B2355-60130/gethrtime.3C.html

"gethrtime() is measured from an unspecified starting point and is not subject to time server and administrator changes"
src: http://nadeausoftware.com/articles/2012/04/c_c_tip_how_measure_elapsed_real_time_benchmarking#gethrtimenbsp
History
Date User Action Args
2017-04-27 11:21:50vstinnersetrecipients: + vstinner, haney
2017-04-27 11:21:50vstinnersetmessageid: <1493292110.45.0.488530374142.issue30183@psf.upfronthosting.co.za>
2017-04-27 11:21:50vstinnerlinkissue30183 messages
2017-04-27 11:21:50vstinnercreate