Closed
Conversation
This change fixes libuv#3068 on OpenVZ Containers in Linux
Contributor
Author
|
Running checking Just to check that Host uptime is significantly bigger (with Code used: result after compiling and running: |
bnoordhuis
reviewed
Dec 14, 2020
Reword comment Co-authored-by: Ben Noordhuis <[email protected]>
Style + code fix Co-authored-by: Ben Noordhuis <[email protected]>
Co-authored-by: Ben Noordhuis <[email protected]>
Fix styling (added missing newline)
Contributor
Author
|
@bnoordhuis I've made the requested changes |
santigimeno
approved these changes
Dec 28, 2020
Member
|
Landed in b2ccbbb. Thanks! |
santigimeno
pushed a commit
that referenced
this pull request
Dec 28, 2020
First check `/proc/uptime`, then fallback to `clock_gettime()`. Fixes: #3068 PR-URL: #3072 Co-authored-by: Ben Noordhuis <[email protected]> Reviewed-by: Ben Noordhuis <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
santigimeno
added a commit
to santigimeno/libuv
that referenced
this pull request
Dec 28, 2020
As it was in the original version of libuv#3072, `%lf` must be used in `sscanf()` as the value is being stored in a `double` and not a `float`.
santigimeno
added a commit
to santigimeno/libuv
that referenced
this pull request
Dec 30, 2020
As it was in the original version of libuv#3072, `%lf` must be used in `sscanf()` as the value is being stored in a `double` and not a `float`. PR-URL: libuv#3080 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
targos
added a commit
to targos/node
that referenced
this pull request
May 1, 2021
This reverts commit b9ffb82. The bug was fixed in libuv 1.41.0. Refs: libuv/libuv#3072
targos
added a commit
to nodejs/node
that referenced
this pull request
May 3, 2021
This reverts commit b9ffb82. The bug was fixed in libuv 1.41.0. Refs: libuv/libuv#3072 PR-URL: #38494 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
targos
added a commit
to nodejs/node
that referenced
this pull request
May 3, 2021
This reverts commit b9ffb82. The bug was fixed in libuv 1.41.0. Refs: libuv/libuv#3072 PR-URL: #38494 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
JeffroMF
pushed a commit
to JeffroMF/libuv
that referenced
this pull request
May 16, 2022
First check `/proc/uptime`, then fallback to `clock_gettime()`. Fixes: libuv#3068 PR-URL: libuv#3072 Co-authored-by: Ben Noordhuis <[email protected]> Reviewed-by: Ben Noordhuis <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
JeffroMF
pushed a commit
to JeffroMF/libuv
that referenced
this pull request
May 16, 2022
As it was in the original version of libuv#3072, `%lf` must be used in `sscanf()` as the value is being stored in a `double` and not a `float`. PR-URL: libuv#3080 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Jul 23, 2025
First check `/proc/uptime`, then fallback to `clock_gettime()`. Fixes: libuv/libuv#3068 PR-URL: libuv/libuv#3072 Co-authored-by: Ben Noordhuis <[email protected]> Reviewed-by: Ben Noordhuis <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Jul 23, 2025
As it was in the original version of libuv/libuv#3072, `%lf` must be used in `sscanf()` as the value is being stored in a `double` and not a `float`. PR-URL: libuv/libuv#3080 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Dec 16, 2025
First check `/proc/uptime`, then fallback to `clock_gettime()`. Fixes: libuv/libuv#3068 PR-URL: libuv/libuv#3072 Co-authored-by: Ben Noordhuis <[email protected]> Reviewed-by: Ben Noordhuis <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Dec 16, 2025
As it was in the original version of libuv/libuv#3072, `%lf` must be used in `sscanf()` as the value is being stored in a `double` and not a `float`. PR-URL: libuv/libuv#3080 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change fixes #3068 on OpenVZ Containers in Linux.