-
-
Notifications
You must be signed in to change notification settings - Fork 2.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
std.posix: Rewriting enums to seperate clock IDs for clock_gettime() and timerfd_create() - Follow-up #22627
Conversation
…_create() - Follow-up
Looks ok to me now. Let's see what CI says. |
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.
Thanks; LGTM.
A cleanup opportunity here is to remove the CLOCK
/TIMERFD_CLOCK
aliases since I'm not convinced they add any value over just using the clockid_t
/timerfd_clockid_t
enums directly. But since CLOCK
was already here, such a change can be a future PR.
agree |
Looks like aarch64-windows ci doesn't work? |
It's just catching up. It's by far our slowest CI machine and it's been very busy over the past few days due to merging a lot of PRs. |
Didn't work, no runner were available within 1 day. |
Follow-up PR of #21347, as it was accidentally deleted.
Incorporated the latest suggestions from @alexrp to better distinguish
CLOCK
forclock_gettime()
andTIMERFD_CLOCK
fortimerfd_create()
.fixes #20334