diff options
author | Lars Kanis <[email protected]> | 2021-08-26 13:38:01 +0200 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2021-08-28 18:26:19 +0900 |
commit | 7e36b91526fdcd83f8a54f4f1f574c89ed0bedee (patch) | |
tree | 1eb8eac694b52c9ef895e693c82a93f1b1464854 /process.c | |
parent | f4b73f77efedf2cea86c77d35892e4377aafaa24 (diff) |
Add Windows as a supported OS for Process.clock_gettime [ci skip]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4782
Diffstat (limited to 'process.c')
-rw-r--r-- | process.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -8128,8 +8128,8 @@ ruby_real_ms_time(void) * The supported constants depends on OS and version. * Ruby provides following types of +clock_id+ if available. * - * [CLOCK_REALTIME] SUSv2 to 4, Linux 2.5.63, FreeBSD 3.0, NetBSD 2.0, OpenBSD 2.1, macOS 10.12 - * [CLOCK_MONOTONIC] SUSv3 to 4, Linux 2.5.63, FreeBSD 3.0, NetBSD 2.0, OpenBSD 3.4, macOS 10.12 + * [CLOCK_REALTIME] SUSv2 to 4, Linux 2.5.63, FreeBSD 3.0, NetBSD 2.0, OpenBSD 2.1, macOS 10.12, Windows-8/Server-2012 + * [CLOCK_MONOTONIC] SUSv3 to 4, Linux 2.5.63, FreeBSD 3.0, NetBSD 2.0, OpenBSD 3.4, macOS 10.12, Windows-2000 * [CLOCK_PROCESS_CPUTIME_ID] SUSv3 to 4, Linux 2.5.63, FreeBSD 9.3, OpenBSD 5.4, macOS 10.12 * [CLOCK_THREAD_CPUTIME_ID] SUSv3 to 4, Linux 2.5.63, FreeBSD 7.1, OpenBSD 5.4, macOS 10.12 * [CLOCK_VIRTUAL] FreeBSD 3.0, OpenBSD 2.1 |