-
Notifications
You must be signed in to change notification settings - Fork 4.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[release/6.0] Use CLOCK_BOOTTIME to calculate BootTime on linux (#67589) #83965
[release/6.0] Use CLOCK_BOOTTIME to calculate BootTime on linux (#67589) #83965
Conversation
…23.2 (dotnet#83857) Microsoft.NET.Workload.Emscripten.Manifest-6.0.100 , Microsoft.NET.Workload.Emscripten.Manifest-6.0.300 , Microsoft.NET.Workload.Emscripten.Manifest-6.0.400 From Version 6.0.15 -> To Version 6.0.16 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Adam Sitnik <adam.sitnik@gmail.com> Co-authored-by: Jeff Handley <jeffhandley@users.noreply.github.com> Co-authored-by: Simon Rozsival <simon@rozsival.com>
Tagging subscribers to this area: @dotnet/area-system-diagnostics-process Issue DetailsBackport of #67589 to release/6.0 /cc @am11 @adamsitnik Customer impactA customer reported that they can't use the This bug as already been fixed in .NET 8 but we didn't backport it to .NET 6.0 at that time. The .NET 6.0 MAUI support lasts until the end of May 2023 so we should backport this bugfix. Fixes #83816 TestingManual testing and unit tests. RiskLow. The fix is well tested.
|
I'm retargeting this PR to the new Repo maintainers will now be allowed to merge their own servicing PR as long as it meets the requirements:
The new process is described here: runtime/docs/project/library-servicing.md. The infra team will be actively monitoring servicing PRs to ensure all requirements are met and to help with any issues. Let me know if you have any questions. |
Thanks, @carlossanlop. |
…d 20230323.2 (dotnet#83857)" This reverts commit f2db6d6.
|
@simonrozsival you are free to merge into the staging branches anytime, as soon as you meet the requirements:
The Code-complete date for the May 2023 Release is April 10th. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you @simonrozsival !
Backport of #67589 to release/6.0
/cc @am11 @adamsitnik
Customer impact
A customer reported that they can't use the
Process.StartTime
API in their Android app (#83816). The problem is that recent Android versions don't allow reading the/proc/stat
file anymore. Instead, we use theclock_gettime
libc function.This bug as already been fixed in .NET 8 but we didn't backport it to .NET 6.0 at that time. The .NET 6.0 MAUI support lasts until the end of May 2023 so we should backport this bugfix.
Fixes #83816
Testing
Manual testing and unit tests.
Risk
Low. The fix is well tested.